AuthMessage

- Added `setUsername(string username)` and `setPassword(string password)`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-09 23:12:02 +02:00
parent 20b36e9746
commit 55d096cfa7
1 changed files with 9 additions and 0 deletions

View File

@ -14,4 +14,13 @@ public final class AuthMessage : Command
registerClass!(typeof(this));
}
public void setUsername(string username)
{
this.username = username;
}
public void setPassword(string password)
{
this.password = password;
}
}