namespace SourceGit.Models {
///
/// 提交中元素类型
///
public enum ObjectType {
None,
Blob,
Tree,
Tag,
Commit,
}
///
/// Git提交中的元素
///
public class Object {
public string SHA { get; set; }
public ObjectType Type { get; set; }
public string Path { get; set; }
}
}