Class Changelog
- Namespace
- TorBoxSDK.Models.Notifications
- Assembly
- TorBoxSDK.dll
Represents a changelog entry from TorBox service updates.
public sealed record Changelog : IEquatable<Changelog>
- Inheritance
-
Changelog
- Implements
- Inherited Members
Properties
Body
Gets the body content of the changelog entry, or null if not available.
[JsonPropertyName("body")]
public string? Body { get; init; }
Property Value
CreatedAt
Gets the date and time when the changelog entry was created, or null if not available.
[JsonPropertyName("created_at")]
public DateTimeOffset? CreatedAt { get; init; }
Property Value
Id
Gets the unique identifier of the changelog entry.
[JsonPropertyName("id")]
public long Id { get; init; }
Property Value
Title
Gets the title of the changelog entry, or null if not available.
[JsonPropertyName("title")]
public string? Title { get; init; }