Changeset.cs 862 B

1234567891011121314151617181920212223242526
  1. using System;
  2. namespace Dfs.WayneChina.PosModelMini
  3. {
  4. public class Changeset
  5. {
  6. public Guid Id { get; set; }
  7. /// <summary>
  8. /// explain what is this version created for, the purpose, the targets and etc, for human better understanding.
  9. /// </summary>
  10. public string Description { get; set; }
  11. /// <summary>
  12. /// snap shot type will lead different lookup algorithm.
  13. /// if it's a partial, the lookup will include the parent hirachy.
  14. /// </summary>
  15. public ChangesetType Type { get; set; }
  16. /// <summary>
  17. /// Gets or sets the datetime when this Changeset created and saved into database.
  18. /// normally this time should be automatically set at the saving time (to db).
  19. /// </summary>
  20. public DateTime CreatedDateTime { get; set; }
  21. }
  22. }