namespace LibGit2Sharp { /// /// An entry in a file's commit history. /// public sealed class LogEntry { /// /// The file's path relative to the repository's root. /// public string Path { get; internal set; } /// /// The commit in which the file was created or changed. /// public Commit Commit { get; internal set; } } }