Table of Contents

Class CommitInfo

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

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

AuthorInfo

Id

Commit SHA.

[JsonPropertyName("id")]
public string Id { get; init; }

Property Value

string

Message

Commit message.

[JsonPropertyName("message")]
public string Message { get; init; }

Property Value

string

Timestamp

When the commit was created.

[JsonPropertyName("timestamp")]
public DateTime? Timestamp { get; init; }

Property Value

DateTime?