Class UpStatus
Represents the API uptime status response from the TorBox root endpoint.
public sealed record UpStatus : IEquatable<UpStatus>
- Inheritance
-
UpStatus
- Implements
- Inherited Members
Properties
Status
Gets the status message, or null if not available.
[JsonPropertyName("status")]
public string? Status { get; init; }
Property Value
Uptime
Gets the uptime data, or null if not available.
[JsonPropertyName("uptime")]
public object? Uptime { get; init; }