mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
22 lines
463 B
C#
22 lines
463 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[Serializable]
|
|
public class UserItemState {
|
|
[XmlElement(ElementName = "CIID")]
|
|
public int CommonInventoryID;
|
|
|
|
[XmlElement(ElementName = "UIPID")]
|
|
public int UserItemPositionID;
|
|
|
|
[XmlElement(ElementName = "IID")]
|
|
public int ItemID;
|
|
|
|
[XmlElement(ElementName = "ISID")]
|
|
public int ItemStateID;
|
|
|
|
[XmlElement(ElementName = "SCD")]
|
|
public DateTime StateChangeDate;
|
|
}
|