mysimulation/server/FSO.Server.Protocol/Authorization/AuthResult.cs

12 lines
249 B
C#
Raw Permalink Normal View History

namespace FSO.Server.Protocol.Authorization
{
public class AuthResult
{
public bool Valid;
public string Ticket;
public string ReasonCode;
public string ReasonText;
public string ReasonURL;
}
}