Class AuthorInfo
Commit author information.
public record AuthorInfo : IEquatable<AuthorInfo>
- Inheritance
-
AuthorInfo
- Implements
- Inherited Members
Properties
Email of the commit author.
[JsonPropertyName("email")]
public string? Email { get; init; }
Property Value
Name
Name of the commit author.
[JsonPropertyName("name")]
public string Name { get; init; }
Property Value
Username
GitHub username of the commit author.
[JsonPropertyName("username")]
public string? Username { get; init; }