终端一体化运控平台
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

30 wiersze
724 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.MessageName
  8. {
  9. /// <summary>
  10. /// 数据订阅主题管理中心
  11. /// </summary>
  12. public class DataName
  13. {
  14. #region XX数据
  15. /// <summary>
  16. /// xxx消息
  17. /// </summary>
  18. [Category("测试"), Description("消息备注"), Browsable(true)]
  19. public static string xxx = "xxx";
  20. /// <summary>
  21. /// xxx消息
  22. /// </summary>
  23. [Category("测试"), Description("消息备注1"), Browsable(true)]
  24. public static string 测试 = "测试";
  25. #endregion
  26. }
  27. }