mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
24 lines
535 B
C#
24 lines
535 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "RPAC", Namespace = "")]
|
|
[Serializable]
|
|
public class RaisedPetAccessory
|
|
{
|
|
[XmlElement(ElementName = "tp")]
|
|
public string Type;
|
|
|
|
[XmlElement(ElementName = "g")]
|
|
public string Geometry;
|
|
|
|
[XmlElement(ElementName = "t")]
|
|
public string Texture;
|
|
|
|
[XmlElement(ElementName = "uiid", IsNullable = true)]
|
|
public int? UserInventoryCommonID;
|
|
|
|
[XmlElement(ElementName = "uid", IsNullable = true)]
|
|
public UserItemData UserItemData;
|
|
}
|