using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ProfileSnDetail Data Structure. /// [Serializable] public class ProfileSnDetail : AopObject { /// /// 设备sn /// [XmlElement("sn")] public string Sn { get; set; } /// /// sn状态 -1无效,1未使用 。2已使用 /// [XmlElement("status")] public long Status { get; set; } } }