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

48 lines
970 B
C#

using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// BeaconDeviceInfo Data Structure.
/// </summary>
[Serializable]
public class BeaconDeviceInfo : AopObject
{
/// <summary>
/// 设备类型
/// </summary>
[JsonProperty("actiontype")]
public string Actiontype { get; set; }
/// <summary>
/// 设备是否可用
/// </summary>
[JsonProperty("inuse")]
public bool Inuse { get; set; }
/// <summary>
/// 设备说明
/// </summary>
[JsonProperty("remark")]
public string Remark { get; set; }
/// <summary>
/// 设备序列号
/// </summary>
[JsonProperty("sn")]
public string Sn { get; set; }
/// <summary>
/// 蓝牙设备关联的模板信息
/// </summary>
[JsonProperty("template")]
public BeaconTemplate Template { get; set; }
/// <summary>
/// 设备ID
/// </summary>
[JsonProperty("uuid")]
public string Uuid { get; set; }
}
}