using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ActionProperty Data Structure. /// [Serializable] public class ActionProperty : AopObject { /// /// 属性C端渲染key /// [XmlElement("key")] public string Key { get; set; } /// /// 交互动作属性元素类型,IMG-图片;TEXT-普通文本 /// [XmlElement("type")] public string Type { get; set; } /// /// 属性图片URL;属性文本值 /// [XmlElement("value")] public string Value { get; set; } } }