1234567891011121314151617181920212223242526 |
- using System;
- namespace Dfs.WayneChina.PosModelMini
- {
- public class Changeset
- {
- public Guid Id { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
-
- public ChangesetType Type { get; set; }
-
-
-
-
- public DateTime CreatedDateTime { get; set; }
- }
- }
|