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