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

21 lines
590 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "BPDC", Namespace = "", IsNullable = true)]
[Serializable]
public class BluePrintDeductibleConfig
{
[XmlElement(ElementName = "BPIID", IsNullable = false)]
public int BluePrintItemID { get; set; }
[XmlElement(ElementName = "DT", IsNullable = false)]
public DeductibleType DeductibleType { get; set; }
[XmlElement(ElementName = "IID", IsNullable = true)]
public int? ItemID { get; set; }
[XmlElement(ElementName = "QTY", IsNullable = false)]
public int Quantity { get; set; }
}