mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-21 22:39:11 +00:00
27 lines
No EOL
496 B
Dart
27 lines
No EOL
496 B
Dart
class Server {
|
|
final String id;
|
|
String name;
|
|
String connectionMethod;
|
|
String domain;
|
|
String? path;
|
|
int? port;
|
|
String? user;
|
|
String? password;
|
|
bool defaultServer;
|
|
String? authToken;
|
|
bool runningOnHa;
|
|
|
|
Server({
|
|
required this.id,
|
|
required this.name,
|
|
required this.connectionMethod,
|
|
required this.domain,
|
|
this.path,
|
|
this.port,
|
|
this.user,
|
|
this.password,
|
|
required this.defaultServer,
|
|
this.authToken,
|
|
required this.runningOnHa,
|
|
});
|
|
} |