mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
13 lines
364 B
C#
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;
|
|
}
|
|
}
|