Files
git-tfs/GitTfs/Core/GitObject.cs
T
Philippe Miossec b18fea8b6a Formatting code using CodeFormatter
CodeFormatter.exe /rule-:FieldNames /nounicode /nocopyright .\GitTfs.sln
2016-10-18 22:10:22 +02:00

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;
}
}
}