12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.PosModelMini
- {
- public enum ChangesetType
- {
- /// <summary>
- /// Partial change set.
- /// </summary>
- Partial,
- /// <summary>
- /// Full change set.
- /// </summary>
- Full
- }
- }
|