AlanMoonbase 8abf75a3e9 initial implementation (wojs)
-added CurrentZone property to Viking model
-implemented ``InviteBuddy`` and ``GetBuddyLocation``
2025-03-18 15:45:52 -07:00

34 lines
818 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema
{
[XmlRoot(ElementName = "BuddyLocation", Namespace = "")]
[Serializable]
public class BuddyLocation
{
[XmlElement(ElementName = "UserID")]
public string UserID;
[XmlElement(ElementName = "Server")]
public string Server;
[XmlElement(ElementName = "Zone")]
public string Zone;
[XmlElement(ElementName = "Room")]
public string Room;
[XmlElement(ElementName = "MultiplayerID")]
public int MultiplayerID;
[XmlElement(ElementName = "ServerVersion")]
public string ServerVersion;
[XmlElement(ElementName = "AppName")]
public string AppName;
[XmlElement(ElementName = "ServerPort")]
public int ServerPort;
}
}