mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
24 lines
527 B
C#
24 lines
527 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "AvatarData", Namespace = "")]
|
|
[Serializable]
|
|
public class AvatarData
|
|
{
|
|
[XmlElement(ElementName = "IsSuggestedAvatarName", IsNullable = true)]
|
|
|
|
public int? Id;
|
|
|
|
public string DisplayName;
|
|
|
|
[XmlElement(ElementName = "Part")]
|
|
public AvatarDataPart[] Part;
|
|
|
|
[XmlElement(ElementName = "Gender")]
|
|
public Gender GenderType;
|
|
|
|
[XmlElement(ElementName = "UTD", IsNullable = true)]
|
|
public bool? SetUserNameToDisplayName;
|
|
}
|