using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AnttechBlockchainFinanceAntdaoMypointsPublishModel Data Structure. /// [Serializable] public class AnttechBlockchainFinanceAntdaoMypointsPublishModel : AopObject { /// /// 数量 /// [XmlElement("count")] public long Count { get; set; } /// /// 备注信息 /// [XmlElement("memo")] public string Memo { get; set; } /// /// 方法路由 /// [XmlElement("method_name")] public string MethodName { get; set; } /// /// 商品ID /// [XmlElement("sku_id")] public string SkuId { get; set; } } }