using System.Collections.Generic; namespace LibGit2Sharp { /// /// A log of commits in a . /// public interface ICommitLog : IEnumerable { /// /// Gets the current sorting strategy applied when enumerating the log. /// CommitSortStrategies SortedBy { get; } } }