using System.Collections.Generic; namespace SourceGit.Git { /// /// Blame /// public class Blame { /// /// Block content. /// public class Block { public string CommitSHA { get; set; } public string Author { get; set; } public string Time { get; set; } public string Content { get; set; } } /// /// Blocks /// public List Blocks { get; set; } = new List(); /// /// Is binary file? /// public bool IsBinary { get; set; } = false; /// /// Line count. /// public int LineCount { get; set; } = 0; } }