using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ClaimProgress Data Structure. /// [Serializable] public class ClaimProgress : AopObject { /// /// 更新内容 /// [XmlElement("update_content")] public string UpdateContent { get; set; } /// /// 更新时间 /// [XmlElement("update_time")] public string UpdateTime { get; set; } } }