终端一体化运控平台
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

HardwareStatusAttribute.cs 602 B

před 2 roky
12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.Device
  7. {
  8. public class HardwareStatusAttribute : Attribute
  9. {
  10. public HardwareStatusAttribute(string describe, string address)
  11. {
  12. Describe = describe;
  13. this.Address = address;
  14. }
  15. /// <summary>
  16. /// 描述
  17. /// </summary>
  18. public string Describe { get; set; }
  19. /// <summary>
  20. /// 地址
  21. /// </summary>
  22. public string Address { get; set; }
  23. }
  24. }