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 } }