CommitInfo
Pennington.TranslationAudit
Minimal commit metadata exposed by IGitHistoryReader.
Properties
Shastring- Short commit hash (7 chars).
WhenDateTimeOffset- Commit author timestamp.
Constructors
CommitInfo
#public CommitInfo(string Sha, DateTimeOffset When)
Minimal commit metadata exposed by IGitHistoryReader.
Parameters
Shastring- Short commit hash (7 chars).
WhenDateTimeOffset- Commit author timestamp.
Pennington.TranslationAudit.CommitInfo
namespace Pennington.TranslationAudit;
/// Minimal commit metadata exposed by IGitHistoryReader.
public record CommitInfo
{
/// Minimal commit metadata exposed by IGitHistoryReader.
public CommitInfo(string Sha, DateTimeOffset When)
;
/// Short commit hash (7 chars).
public string Sha { get; set; }
/// Commit author timestamp.
public DateTimeOffset When { get; set; }
}