mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-20 05:49:12 +00:00
21 lines
432 B
Dart
21 lines
432 B
Dart
|
class Server {
|
||
|
final String name;
|
||
|
final String connectionMethod;
|
||
|
final String domain;
|
||
|
final String? path;
|
||
|
final int? port;
|
||
|
final String user;
|
||
|
final String password;
|
||
|
final bool defaultServer;
|
||
|
|
||
|
const Server({
|
||
|
required this.name,
|
||
|
required this.connectionMethod,
|
||
|
required this.domain,
|
||
|
this.path,
|
||
|
this.port,
|
||
|
required this.user,
|
||
|
required this.password,
|
||
|
required this.defaultServer
|
||
|
});
|
||
|
}
|