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