123456789101112131415161718192021222324252627282930 |
- namespace Dfs.WayneChina.PosModelMini
- {
- public enum BusinessUnitTypeEnum
- {
- /// <summary>
- /// Global type.
- /// </summary>
- Global,
- /// <summary>
- /// Regional type.
- /// </summary>
- Region,
- /// <summary>
- /// Country type.
- /// </summary>
- Country,
- /// <summary>
- /// Project type.
- /// </summary>
- Project,
- /// <summary>
- /// Site type.
- /// </summary>
- Site,
- }
- }
|