using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MaterialCreateInfo Data Structure. /// [Serializable] public class MaterialCreateInfo : AopObject { /// /// 素材内容(素材地址或素材KEY) /// [XmlElement("content")] public string Content { get; set; } /// /// 素材类型 /// [XmlElement("type")] public string Type { get; set; } } }