终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

31 lines
641 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmart.Model
  7. {
  8. /// <summary>
  9. /// 管道主题
  10. /// </summary>
  11. public class PipeTopic
  12. {
  13. /// <summary>
  14. /// 管道通讯名称
  15. /// </summary>
  16. public const string PipeName = "ConfigurationPipe";
  17. /// <summary>
  18. /// 变量保存消息
  19. /// </summary>
  20. public const string VarSave = "VarSave";
  21. /// <summary>
  22. /// 退出通知消息
  23. /// </summary>
  24. public const string ExitNotify = "ExitNotify";
  25. }
  26. }