Added auth token to server modal and dns statistics request

This commit is contained in:
Juan Gilsanz Polo 2022-09-27 02:38:59 +02:00
parent 360b6865be
commit 97e4fea015
9 changed files with 171 additions and 15 deletions

View file

@ -8,6 +8,7 @@ class Server {
String user;
String password;
bool defaultServer;
String authToken;
Server({
required this.id,
@ -18,6 +19,7 @@ class Server {
this.port,
required this.user,
required this.password,
required this.defaultServer
required this.defaultServer,
required this.authToken
});
}