mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
27 lines
565 B
C#
27 lines
565 B
C#
using System.Diagnostics;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "UR", Namespace = "")]
|
|
[Serializable]
|
|
public class UserRoom {
|
|
[XmlElement(ElementName = "N")]
|
|
public string Name;
|
|
|
|
[XmlElement(ElementName = "R")]
|
|
public string RoomID;
|
|
|
|
[XmlElement(ElementName = "CP")]
|
|
public double CreativePoints;
|
|
|
|
[XmlElement(ElementName = "C")]
|
|
public int? CategoryID;
|
|
|
|
[XmlElement(ElementName = "IID")]
|
|
public int? ItemID;
|
|
|
|
[XmlElement(ElementName = "SN")]
|
|
public string SceneName;
|
|
}
|