using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// TextContent Data Structure. /// [Serializable] public class TextContent : AopObject { /// /// 文本消息的内容 /// [XmlElement("content")] public string Content { get; set; } /// /// 文本消息的标题 /// [XmlElement("title")] public string Title { get; set; } } }