Table of Contents

Class Changelog

Namespace
TorBoxSDK.Models.General
Assembly
TorBoxSDK.dll

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

DateTimeOffset?

Html

Gets the HTML content of the changelog entry, or null if not available.

[JsonPropertyName("html")]
public string? Html { get; init; }

Property Value

string

Id

Gets the unique identifier of the changelog entry.

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

Property Value

string

Gets the link associated with the changelog entry, or null if not available.

[JsonPropertyName("link")]
public string? Link { get; init; }

Property Value

string

Markdown

Gets the Markdown content of the changelog entry, or null if not available.

[JsonPropertyName("markdown")]
public string? Markdown { get; init; }

Property Value

string

Name

Gets the version name of the changelog entry.

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

Property Value

string