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

18 lines
358 B
C#

using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayZmScoreZrankResult Data Structure.
/// </summary>
[Serializable]
public class AlipayZmScoreZrankResult : AopObject
{
/// <summary>
/// 芝麻分分段 Z0-Z7
/// </summary>
[JsonProperty("zrank")]
public string Zrank { get; set; }
}
}