mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
11 lines
336 B
C#
11 lines
336 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "GetGameDataResponse", Namespace = "")]
|
|
[Serializable]
|
|
public class GetGameDataResponse {
|
|
[XmlElement(ElementName = "GameDataSummaryList")]
|
|
public List<GameDataSummary> GameDataSummaryList { get; set; } = new List<GameDataSummary>();
|
|
}
|