feature: add children list to the commit base info view

Useful for navigation between the commits.
This commit is contained in:
Dmitrij D. Czarkoff 2024-11-10 02:07:15 +01:00
parent b974436c8a
commit 7ba35e1973
No known key found for this signature in database
5 changed files with 40 additions and 8 deletions

View file

@ -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;