mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-04 16:03:13 +00:00
14 lines
263 B
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;
|
|
}
|