TracStatus.cs 390 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace XYY.Model.Standard
  7. {
  8. public enum TracStatus
  9. {
  10. delivered,
  11. exception,
  12. expired,
  13. InfoReceived,
  14. notfound,
  15. noUpdate,
  16. pending,
  17. pickup,
  18. transit,
  19. undelivered,
  20. wait,
  21. }
  22. }