jumpstart-games-reduxed/src/Schema/CommonInventoryResponse.cs
hictooth 5f7921ea6f implement dragons
pets, which are dragons in SoD
2023-06-21 21:01:54 +01:00

21 lines
543 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "CIRS", Namespace = "")]
[Serializable]
public class CommonInventoryResponse
{
[XmlElement(ElementName = "pir", IsNullable = true)]
public List<PrizeItemResponse> PrizeItems { get; set; }
[XmlElement(ElementName = "s")]
public bool Success;
[XmlElement(ElementName = "cids")]
public CommonInventoryResponseItem[] CommonInventoryIDs;
[XmlElement(ElementName = "ugc", IsNullable = true)]
public UserGameCurrency UserGameCurrency;
}