mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
24 lines
602 B
C#
24 lines
602 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema
|
|
{
|
|
[XmlRoot(ElementName = "StepTaskObjectivePhoto", Namespace = "")]
|
|
[Serializable]
|
|
public class StepTaskObjectivePhoto
|
|
{
|
|
[XmlElement(ElementName = "ItemName")]
|
|
public string[] ItemName;
|
|
|
|
[XmlElement(ElementName = "NPC")]
|
|
public string[] NPC;
|
|
|
|
[XmlElement(ElementName = "CategoryID")]
|
|
public int[] CategoryID;
|
|
|
|
[XmlElement(ElementName = "AttributeID")]
|
|
public int[] AttributeID;
|
|
|
|
[XmlElement(ElementName = "Quantity")]
|
|
public int Quantity;
|
|
}
|
|
} |