using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ExtensiblePortfolioSite.SDK.Git { /// /// A commit inside a git repository /// public interface ICommit : IGitObject { /// /// The description of the commit /// public String Description { get; } /// /// List of files modified in the commit /// public IReadOnlyCollection ModifiedFiles { get; } } }