using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenPublicLifeLabelCreateModel Data Structure. /// [Serializable] public class AlipayOpenPublicLifeLabelCreateModel : AopObject { /// /// 标签值类型,目前只支持string(字符串类型),不传默认为"string" /// [XmlElement("data_type")] public string DataType { get; set; } /// /// 自定义标签名 /// [XmlElement("label_name")] public string LabelName { get; set; } } }