mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
21 lines
590 B
C#
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; }
|
|
}
|