Class CommitInfo
Commit information.
public record CommitInfo : IEquatable<CommitInfo>
- Inheritance
-
CommitInfo
- Implements
- Inherited Members
Properties
Author
Author of the commit.
[JsonPropertyName("author")]
public AuthorInfo? Author { get; init; }
Property Value
Id
Commit SHA.
[JsonPropertyName("id")]
public string Id { get; init; }
Property Value
Message
Commit message.
[JsonPropertyName("message")]
public string Message { get; init; }
Property Value
Timestamp
When the commit was created.
[JsonPropertyName("timestamp")]
public DateTime? Timestamp { get; init; }