mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
17 lines
368 B
C#
17 lines
368 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "Pair", Namespace = "")]
|
|
[Serializable]
|
|
public class Pair {
|
|
[XmlElement(ElementName = "PairKey")]
|
|
public string PairKey;
|
|
|
|
[XmlElement(ElementName = "PairValue")]
|
|
public string PairValue;
|
|
|
|
[XmlElement(ElementName = "UpdateDate")]
|
|
public DateTime UpdateDate;
|
|
}
|