jumpstart-games-reduxed/src/Schema/DefaultMissions.cs
Spirtix 9cef74dd26 add support for missions
still requires achievements to work corrently
2023-07-07 01:25:25 +02:00

19 lines
457 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
// NOTE: This schema is NOT used by the client
// This is a schema specific to the sodoff server
[XmlRoot(ElementName = "DefaultMissions", Namespace = "")]
[Serializable]
public class DefaultMissions
{
[XmlArray(ElementName = "Active")]
[XmlArrayItem("id")]
public int[] Active { get; set; }
[XmlArray(ElementName = "Upcoming")]
[XmlArrayItem("id")]
public int[] Upcoming { get; set; }
}