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