hictooth 199d44f1cd create profile
works up to start of tutorial
2023-06-19 20:23:53 +01:00

24 lines
670 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "STAT", Namespace = "", IsNullable = false)]
[Serializable]
public class Stat
{
[XmlElement(ElementName = "IID", IsNullable = false)]
public int ItemID { get; set; }
[XmlElement(ElementName = "ISID", IsNullable = false)]
public int ItemStatsID { get; set; }
[XmlElement(ElementName = "SID", IsNullable = false)]
public int SetID { get; set; }
[XmlElement(ElementName = "PROB", IsNullable = false)]
public int Probability { get; set; }
[XmlElement(ElementName = "ISRM", IsNullable = false)]
public List<StatRangeMap> ItemStatsRangeMaps { get; set; }
}