mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
11 lines
252 B
C#
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;
|
|
}
|
|
}
|