11 lines
318 B
C#
11 lines
318 B
C#
namespace Sep.Git.Tfs.Core
|
|
{
|
|
public class GitObject
|
|
{
|
|
public LibGit2Sharp.Mode Mode { get; set; }
|
|
public LibGit2Sharp.TreeEntryTargetType ObjectType { get; set; }
|
|
public string Sha { get; set; }
|
|
public string Commit { get; set; }
|
|
public string Path { get; set; }
|
|
}
|
|
} |