sodoff/src/Schema/ServerItemArray.cs
2023-06-22 13:59:14 +02:00

13 lines
364 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 = "Items", Namespace = "")]
public class ServerItemArray {
[XmlElement(ElementName = "I", IsNullable = true)]
public ItemData[] ItemDataArray;
}
}