using System;
namespace Dfs.WayneChina.PosModelMini
{
public class Changeset
{
public Guid Id { get; set; }
///
/// explain what is this version created for, the purpose, the targets and etc, for human better understanding.
///
public string Description { get; set; }
///
/// snap shot type will lead different lookup algorithm.
/// if it's a partial, the lookup will include the parent hirachy.
///
public ChangesetType Type { get; set; }
///
/// Gets or sets the datetime when this Changeset created and saved into database.
/// normally this time should be automatically set at the saving time (to db).
///
public DateTime CreatedDateTime { get; set; }
}
}