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