minecraft-server-installer/lib/properties/adapter/gateway/server_properties_file_storage.dart

6 lines
253 B
Dart

import 'package:minecraft_server_installer/properties/adapter/gateway/server_properties_dto.dart';
abstract interface class ServerPropertiesFileStorage {
Future<void> writeServerProperties(ServerPropertiesDto serverPropertiesDto, String savePath);
}