mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
26 lines
621 B
C#
26 lines
621 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "MSI", Namespace = "")]
|
|
[Serializable]
|
|
public class MMOServerData {
|
|
[XmlElement(ElementName = "IP")]
|
|
public string IPAddress { get; set; }
|
|
|
|
[XmlElement(ElementName = "PN")]
|
|
public int Port { get; set; }
|
|
|
|
[XmlElement(ElementName = "VR")]
|
|
public string Version { get; set; }
|
|
|
|
[XmlElement(ElementName = "DF")]
|
|
public bool isDefault { get; set; }
|
|
|
|
[XmlElement(ElementName = "ZN")]
|
|
public string ZoneName { get; set; }
|
|
|
|
[XmlElement(ElementName = "RZN")]
|
|
public string RootZone { get; set; }
|
|
}
|