mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
18 lines
372 B
C#
18 lines
372 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "IC", Namespace = "")]
|
|
[Serializable]
|
|
public class ItemDataCategory
|
|
{
|
|
[XmlElement(ElementName = "cid")]
|
|
public int CategoryId;
|
|
|
|
[XmlElement(ElementName = "cn")]
|
|
public string CategoryName;
|
|
|
|
[XmlElement(ElementName = "i", IsNullable = true)]
|
|
public string IconName;
|
|
}
|