17 lines
641 B
C#
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();
|
|
}
|