mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
11 lines
269 B
C#
11 lines
269 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "GetStoreResponse", Namespace = "", IsNullable = true)]
|
|
[Serializable]
|
|
public class GetStoreResponse {
|
|
[XmlElement(ElementName = "Stores")]
|
|
public ItemsInStoreData[] Stores;
|
|
}
|