mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-06-25 12:24:59 +00:00
feature: add children list to the commit base info view
Useful for navigation between the commits.
This commit is contained in:
parent
b974436c8a
commit
7ba35e1973
5 changed files with 40 additions and 8 deletions
|
@ -28,6 +28,7 @@ namespace SourceGit.Models
|
|||
public ulong CommitterTime { get; set; } = 0;
|
||||
public string Subject { get; set; } = string.Empty;
|
||||
public List<string> Parents { get; set; } = new List<string>();
|
||||
public List<string> Children { get; set; } = new List<string>();
|
||||
public List<Decorator> Decorators { get; set; } = new List<Decorator>();
|
||||
public bool HasDecorators => Decorators.Count > 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue