mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
26 lines
576 B
C#
26 lines
576 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "UPGD", IsNullable = true, Namespace = "")]
|
|
public class UserProfileGroupData
|
|
{
|
|
[XmlElement(ElementName = "GroupID")]
|
|
public string GroupID;
|
|
|
|
[XmlElement(ElementName = "RoleID", IsNullable = true)]
|
|
public int? RoleID;
|
|
|
|
[XmlElement(ElementName = "TypeID", IsNullable = true)]
|
|
public int? TypeID;
|
|
|
|
[XmlElement(ElementName = "N")]
|
|
public string Name;
|
|
|
|
[XmlElement(ElementName = "L")]
|
|
public string Logo;
|
|
|
|
[XmlElement(ElementName = "C")]
|
|
public string Color;
|
|
}
|