ModelEnum.cs 582 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace DataSimulation.Repostory.Model
  9. {
  10. public enum EnumTaskState
  11. {
  12. [Display(Name = "未执行")]
  13. Stopped,
  14. [Display(Name = "执行中")]
  15. Running
  16. }
  17. /// <summary>
  18. /// 仿真类型
  19. /// </summary>
  20. public enum EnumSimulationType
  21. {
  22. [Display(Name = "三星双时差")]
  23. X3TwoDto
  24. }
  25. }