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