using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.Device { public class HardwareStatusAttribute : Attribute { public HardwareStatusAttribute(string describe, string address) { Describe = describe; this.Address = address; } /// /// 描述 /// public string Describe { get; set; } /// /// 地址 /// public string Address { get; set; } } }