EAiCallOutTaskState.cs 516 B

1234567891011121314151617181920212223242526
  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 Hotline.Share.Enums.Ai
  8. {
  9. public enum EAiCallOutTaskState
  10. {
  11. [Description("未开始")]
  12. NoStarted = 1,
  13. [Description("进行中")]
  14. InProgress = 2,
  15. [Description("已结束")]
  16. Ended = 3,
  17. [Description("已终止")]
  18. Close = 4,
  19. [Description("已暂停")]
  20. Pause = 5,
  21. }
  22. }