Class Changelog
Represents a changelog entry from TorBox service updates.
public sealed record Changelog : IEquatable<Changelog>
- Inheritance
-
Changelog
- Implements
- Inherited Members
Properties
CreatedAt
Gets the creation date of the changelog entry, or null if not available.
[JsonPropertyName("created_at")]
public DateTimeOffset? CreatedAt { get; init; }
Property Value
Html
Gets the HTML content of the changelog entry, or null if not available.
[JsonPropertyName("html")]
public string? Html { get; init; }
Property Value
Id
Gets the unique identifier of the changelog entry.
[JsonPropertyName("id")]
public string Id { get; init; }
Property Value
Link
Gets the link associated with the changelog entry, or null if not available.
[JsonPropertyName("link")]
public string? Link { get; init; }
Property Value
Markdown
Gets the Markdown content of the changelog entry, or null if not available.
[JsonPropertyName("markdown")]
public string? Markdown { get; init; }
Property Value
Name
Gets the version name of the changelog entry.
[JsonPropertyName("name")]
public string Name { get; init; }