mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 08:38:49 -07:00
15 lines
294 B
C#
15 lines
294 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "MP", Namespace = "")]
|
|
[Serializable]
|
|
public class MissionPair
|
|
{
|
|
[XmlElement(ElementName = "MID")]
|
|
public int? MissionID { get; set; }
|
|
|
|
[XmlElement(ElementName = "VID")]
|
|
public int? VersionID { get; set; }
|
|
}
|