mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 09:52:23 +00:00
12 lines
249 B
C#
12 lines
249 B
C#
|
namespace FSO.Server.Protocol.Authorization
|
|||
|
{
|
|||
|
public class AuthResult
|
|||
|
{
|
|||
|
public bool Valid;
|
|||
|
public string Ticket;
|
|||
|
public string ReasonCode;
|
|||
|
public string ReasonText;
|
|||
|
public string ReasonURL;
|
|||
|
}
|
|||
|
}
|