using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// TextDiff Data Structure. /// [Serializable] public class TextDiff : AopObject { /// /// 操作类型 /// [XmlElement("operation")] public string Operation { get; set; } /// /// 文本内容 /// [XmlElement("text")] public string Text { get; set; } } }