18 lines
322 B
C#
18 lines
322 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// AliTrustScore Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AliTrustScore : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 芝麻分
|
|
/// </summary>
|
|
[JsonProperty("score")]
|
|
public long Score { get; set; }
|
|
}
|
|
} |