Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayUserFinanceinfoShareModel.cs

18 lines
378 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserFinanceinfoShareModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserFinanceinfoShareModel : AopObject
{
/// <summary>
/// 支付宝会员的userId
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}