sodoff/src/Schema/StatRangeMap.cs
hictooth 199d44f1cd create profile
works up to start of tutorial
2023-06-19 20:23:53 +01:00

24 lines
663 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "SRM", Namespace = "", IsNullable = false)]
[Serializable]
public class StatRangeMap
{
[XmlElement(ElementName = "ISID", IsNullable = false)]
public int ItemStatsID { get; set; }
[XmlElement(ElementName = "ISN", IsNullable = false)]
public string ItemStatsName { get; set; }
[XmlElement(ElementName = "ITID", IsNullable = false)]
public int ItemTierID { get; set; }
[XmlElement(ElementName = "SR", IsNullable = false)]
public int StartRange { get; set; }
[XmlElement(ElementName = "ER", IsNullable = false)]
public int EndRange { get; set; }
}