mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
15 lines
333 B
C#
15 lines
333 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema
|
|
{
|
|
[XmlRoot(ElementName = "StepStoreItem", Namespace = "")]
|
|
[Serializable]
|
|
public class StepStoreItem
|
|
{
|
|
[XmlElement(ElementName = "StoreID")]
|
|
public int StoreID;
|
|
|
|
[XmlElement(ElementName = "ItemID")]
|
|
public int ItemID;
|
|
}
|
|
} |