24 lines
474 B
C#
24 lines
474 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// ClaimProgress Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class ClaimProgress : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 更新内容
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("update_content")]
|
||
|
|
public string UpdateContent { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 更新时间
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("update_time")]
|
||
|
|
public string UpdateTime { get; set; }
|
||
|
|
}
|
||
|
|
}
|