freeso/TSOClient/FSO.Server.Protocol/Authorization/AuthRequest.cs
2023-11-25 15:55:49 +00:00

11 lines
252 B
C#

namespace FSO.Server.Protocol.Authorization
{
public class AuthRequest
{
public string Username;
public string Password;
public string ServiceID;
public string Version;
public string ClientID;
}
}