Table of Contents

Class AuthorInfo

Namespace
Ando.Server.GitHub
Assembly
Ando.Server.dll

Commit author information.

public record AuthorInfo : IEquatable<AuthorInfo>
Inheritance
AuthorInfo
Implements
Inherited Members

Properties

Email

Email of the commit author.

[JsonPropertyName("email")]
public string? Email { get; init; }

Property Value

string

Name

Name of the commit author.

[JsonPropertyName("name")]
public string Name { get; init; }

Property Value

string

Username

GitHub username of the commit author.

[JsonPropertyName("username")]
public string? Username { get; init; }

Property Value

string