using System.Collections.Generic; namespace LibGit2Sharp { public interface ICommitCollection : IEnumerable { /// /// Gets the current sorting strategy applied when enumerating the collection. /// GitSortOptions SortedBy { get; } } }