adguard-home-manager/lib/models/server.dart

25 lines
468 B
Dart
Raw Normal View History

class Server {
2022-09-26 18:49:41 +02:00
final String id;
String name;
String connectionMethod;
String domain;
String? path;
int? port;
String user;
String password;
bool defaultServer;
String authToken;
2022-09-26 18:49:41 +02:00
Server({
required this.id,
required this.name,
required this.connectionMethod,
required this.domain,
this.path,
this.port,
required this.user,
required this.password,
required this.defaultServer,
required this.authToken
});
}