using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// InsCertificate Data Structure.
///
[Serializable]
public class InsCertificate : AopObject
{
///
/// 发奖凭证ID
///
[XmlElement("certificate_id")]
public string CertificateId { get; set; }
///
/// 发奖凭证类型;GIFT_INSURANCE:赠险
///
[XmlElement("certificate_type")]
public string CertificateType { get; set; }
///
/// 发奖凭证值
///
[XmlElement("certificate_value")]
public string CertificateValue { get; set; }
}
}