ImportState.cs 428 B

123456789101112131415161718192021
  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 Ips.Library.Entity
  8. {
  9. public enum ImportState
  10. {
  11. [Description("未导入")]
  12. None,
  13. [Description("导入中")]
  14. Import,
  15. [Description("导入成功")]
  16. Success,
  17. [Description("导入失败")]
  18. Fail
  19. }
  20. }