mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
15 lines
276 B
C#
15 lines
276 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "RPST", Namespace = "")]
|
|
[Serializable]
|
|
public class RaisedPetState
|
|
{
|
|
[XmlElement(ElementName = "k")]
|
|
public string Key;
|
|
|
|
[XmlElement(ElementName = "v")]
|
|
public float Value;
|
|
}
|