mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 18:02:23 +00:00
12 lines
252 B
C#
12 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;
|
|||
|
}
|
|||
|
}
|