Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AccountFreeze.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

30 lines
611 B
C#

using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AccountFreeze Data Structure.
/// </summary>
[Serializable]
public class AccountFreeze : AopObject
{
/// <summary>
/// 冻结金额
/// </summary>
[JsonProperty("freeze_amount")]
public string FreezeAmount { get; set; }
/// <summary>
/// 冻结类型名称
/// </summary>
[JsonProperty("freeze_name")]
public string FreezeName { get; set; }
/// <summary>
/// 冻结类型值
/// </summary>
[JsonProperty("freeze_type")]
public string FreezeType { get; set; }
}
}