b18fea8b6a
CodeFormatter.exe /rule-:FieldNames /nounicode /nocopyright .\GitTfs.sln
17 lines
423 B
C#
17 lines
423 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; }
|
|
|
|
public GitObject()
|
|
{
|
|
Mode = LibGit2Sharp.Mode.NonExecutableFile;
|
|
}
|
|
}
|
|
} |