Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/SsdataDataserviceRiskIpprofileQueryModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

24 lines
505 B
C#

using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// SsdataDataserviceRiskIpprofileQueryModel Data Structure.
/// </summary>
[Serializable]
public class SsdataDataserviceRiskIpprofileQueryModel : AopObject
{
/// <summary>
/// IP地址
/// </summary>
[JsonProperty("ip_address")]
public string IpAddress { get; set; }
/// <summary>
/// 手机号码
/// </summary>
[JsonProperty("phone")]
public string Phone { get; set; }
}
}