忽略dll文件git
This commit is contained in:
@@ -1,48 +0,0 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user