Class InactiveCheckResult
Represents the result of an inactivity check for a torrent on the TorBox Relay API.
public sealed record InactiveCheckResult : IEquatable<InactiveCheckResult>
- Inheritance
-
InactiveCheckResult
- Implements
- Inherited Members
Properties
IsInactive
Gets a value indicating whether the torrent is currently inactive.
[JsonPropertyName("is_inactive")]
public bool IsInactive { get; init; }
Property Value
LastActive
Gets the date and time when the torrent was last active, or null if not available.
[JsonPropertyName("last_active")]
public DateTimeOffset? LastActive { get; init; }
Property Value
Status
Gets the status message of the inactivity check, or null if not available.
[JsonPropertyName("status")]
public string? Status { get; init; }