25 lines
654 B
C#
25 lines
654 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// PrizeLiteInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class PrizeLiteInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 外部奖品ID
|
|
/// </summary>
|
|
[XmlElement("out_prize_id")]
|
|
public string OutPrizeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 奖品状态,可枚举,分别为“可用”(ENABLED)、“不可用”(DISABLED)、“不满足使用规则”(NOT_MATCH_USE_CONDITION)
|
|
/// </summary>
|
|
[XmlElement("status")]
|
|
public string Status { get; set; }
|
|
}
|
|
}
|