mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
30 lines
720 B
C#
30 lines
720 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "CIRT", Namespace = "")]
|
|
[Serializable]
|
|
public class CommonInventoryRequest
|
|
{
|
|
[XmlElement(ElementName = "uipid")]
|
|
public int? UserItemPositionID { get; set; }
|
|
|
|
[XmlElement(ElementName = "u")]
|
|
public int? Uses { get; set; }
|
|
|
|
[XmlElement(ElementName = "uia", IsNullable = true)]
|
|
public PairData UserItemAttributes { get; set; }
|
|
|
|
[XmlElement(ElementName = "im", IsNullable = true)]
|
|
public int? InventoryMax { get; set; }
|
|
|
|
[XmlElement(ElementName = "iid")]
|
|
public int? ItemID;
|
|
|
|
[XmlElement(ElementName = "cid")]
|
|
public int? CommonInventoryID;
|
|
|
|
[XmlElement(ElementName = "q")]
|
|
public int Quantity;
|
|
}
|