mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
13 lines
255 B
C#
13 lines
255 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[Serializable]
|
|
public class CommonInventoryConsumable {
|
|
[XmlElement(ElementName = "CIID")]
|
|
public int CommonInventoryID;
|
|
|
|
[XmlElement(ElementName = "IID")]
|
|
public int ItemID;
|
|
}
|