ChangesetTypeEnum.cs 337 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.PosModelMini
  5. {
  6. public enum ChangesetType
  7. {
  8. /// <summary>
  9. /// Partial change set.
  10. /// </summary>
  11. Partial,
  12. /// <summary>
  13. /// Full change set.
  14. /// </summary>
  15. Full
  16. }
  17. }