Files
ZakirovT 057e1f526b init
2026-01-22 00:45:41 +03:00

17 lines
641 B
C#

namespace PerfReviewSummarizer.Api.Models;
public class CommitInfo
{
public string Sha { get; set; } = string.Empty;
public string Message { get; set; } = string.Empty;
public string Author { get; set; } = string.Empty;
public string AuthorEmail { get; set; } = string.Empty;
public string Committer { get; set; } = string.Empty;
public string CommitterEmail { get; set; } = string.Empty;
public DateTimeOffset When { get; set; }
public int FilesChanged { get; set; }
public int Additions { get; set; }
public int Deletions { get; set; }
public List<string> ChangedPaths { get; set; } = new();
}