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