selfprivacy.org.app/lib/logic/models/server_provider_location.dart

14 lines
263 B
Dart

class ServerProviderLocation {
ServerProviderLocation({
required this.title,
required this.identifier,
this.description,
this.flag = '',
});
final String title;
final String identifier;
final String? description;
final String flag;
}