NewGaoKaoApi/PaymentSDK/AliPay/Domain/DeviceParams.cs

31 lines
783 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// DeviceParams Data Structure.
/// </summary>
[Serializable]
public class DeviceParams : AopObject
{
/// <summary>
/// 设备Id
/// </summary>
[XmlElement("device_id")]
public string DeviceId { get; set; }
/// <summary>
/// 设备名称
/// </summary>
[XmlElement("device_name")]
public string DeviceName { get; set; }
/// <summary>
/// 设备类型,目前有四种值: VR一体机VR_MACHINE、电视TV、身份证ID_CARD、工牌WORK_CARD
/// </summary>
[XmlElement("device_type")]
public string DeviceType { get; set; }
}
}