namespace LibGit2Sharp { /// /// Holds a summary of a change to a single file. /// public class ContentChangeStats { /// /// The number of lines added in the diff. /// public virtual int LinesAdded { get; private set; } /// /// The number of lines deleted in the diff. /// public virtual int LinesDeleted { get; private set; } /// /// For mocking. /// protected ContentChangeStats() { } internal ContentChangeStats(int added, int deleted) { LinesAdded = added; LinesDeleted = deleted; } } }