Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayUserDeviceInfo.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

48 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserDeviceInfo Data Structure.
/// </summary>
[Serializable]
public class AlipayUserDeviceInfo : AopObject
{
/// <summary>
/// 扩展信息json格式的字符串
/// </summary>
[JsonProperty("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 移动设备国际身份码缩写:移动设备国际身份码缩写。仅移动端
/// </summary>
[JsonProperty("imei")]
public string Imei { get; set; }
/// <summary>
/// ipv4地址
/// </summary>
[JsonProperty("ip")]
public string Ip { get; set; }
/// <summary>
/// mac地址冒号分隔
/// </summary>
[JsonProperty("mac")]
public string Mac { get; set; }
/// <summary>
/// 操作系统名称
/// </summary>
[JsonProperty("os_name")]
public string OsName { get; set; }
/// <summary>
/// 操作系统版本号
/// </summary>
[JsonProperty("os_version")]
public string OsVersion { get; set; }
}
}