mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
14 lines
332 B
C#
14 lines
332 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "rr", Namespace = "")]
|
|
[Serializable]
|
|
public class RedeemRequest {
|
|
[XmlElement(ElementName = "i")]
|
|
public int ItemID { get; set; }
|
|
|
|
[XmlElement(ElementName = "rc", IsNullable = true)]
|
|
public int? RedeemItemFetchCount { get; set; }
|
|
}
|