AuthMessage

- Added getters
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-09 23:49:49 +02:00
parent 2900ba8bcd
commit 1bbea05a68
1 changed files with 10 additions and 0 deletions

View File

@ -23,6 +23,16 @@ public final class AuthMessage : Command
{
this.password = password;
}
public string getUsername()
{
return this.username;
}
public string getPassword()
{
return this.password;
}
}
public final class AuthResponse : Command