18 lines
395 B
C#
18 lines
395 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayUserAntpaasUseridGetModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayUserAntpaasUseridGetModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 账户登录号,邮箱或者手机号
|
|
/// </summary>
|
|
[JsonProperty("logon_id")]
|
|
public string LogonId { get; set; }
|
|
}
|
|
} |