基础服务api
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
616 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 BPA.SAAS.Manage.Comm.Enum
  8. {
  9. public enum TopicsTypeEnum
  10. {
  11. /// <summary>
  12. /// 发布
  13. /// </summary>
  14. [Description("发布")]
  15. PUBLISH = 0,
  16. /// <summary>
  17. /// 订阅
  18. /// </summary>
  19. [Description("订阅")]
  20. SUBSCRIBE = 1,
  21. /// <summary>
  22. /// 发布和订阅
  23. /// </summary>
  24. [Description("发布和订阅")]
  25. PUBLISHANDSUBSCRIBE = 2
  26. }
  27. }