using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// BenefitSource Data Structure. /// [Serializable] public class BenefitSource : AopObject { /// /// 来源类型,比如CAMPAIG /// [XmlElement("benefit_source_type")] public string BenefitSourceType { get; set; } /// /// 10000455203 /// [XmlElement("benefit_source_value")] public string BenefitSourceValue { get; set; } } }