mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
14 lines
359 B
C#
14 lines
359 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "UISS", Namespace = "")]
|
|
[Serializable]
|
|
public class UserItemStat {
|
|
[XmlElement(ElementName = "iss", IsNullable = true)]
|
|
public ItemStat[] ItemStats { get; set; }
|
|
|
|
[XmlElement(ElementName = "it", IsNullable = true)]
|
|
public ItemTier? ItemTier { get; set; }
|
|
}
|