jsgr-mmo/src/Management/AuthenticationInfo.cs
2024-04-07 15:42:21 +02:00

20 lines
359 B
C#

using System.Xml.Serialization;
namespace sodoffmmo.Management;
[Serializable]
public class AuthenticationInfo {
[XmlElement]
public bool Authenticated { get; set; }
[XmlElement]
public string DisplayName { get; set; }
[XmlElement]
public Role Role { get; set; }
}
[Serializable]
public enum Role {
User, Admin, Moderator
}