BusinessUnitTypeEnum.cs 530 B

123456789101112131415161718192021222324252627282930
  1. namespace Dfs.WayneChina.PosModelMini
  2. {
  3. public enum BusinessUnitTypeEnum
  4. {
  5. /// <summary>
  6. /// Global type.
  7. /// </summary>
  8. Global,
  9. /// <summary>
  10. /// Regional type.
  11. /// </summary>
  12. Region,
  13. /// <summary>
  14. /// Country type.
  15. /// </summary>
  16. Country,
  17. /// <summary>
  18. /// Project type.
  19. /// </summary>
  20. Project,
  21. /// <summary>
  22. /// Site type.
  23. /// </summary>
  24. Site,
  25. }
  26. }