mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
21 lines
438 B
C#
21 lines
438 B
C#
namespace SourceGit.Models {
|
|
/// <summary>
|
|
/// 提交中元素类型
|
|
/// </summary>
|
|
public enum ObjectType {
|
|
None,
|
|
Blob,
|
|
Tree,
|
|
Tag,
|
|
Commit,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Git提交中的元素
|
|
/// </summary>
|
|
public class Object {
|
|
public string SHA { get; set; }
|
|
public ObjectType Type { get; set; }
|
|
public string Path { get; set; }
|
|
}
|
|
}
|