Table of Contents

Class DashboardFilter

Namespace
TorBoxSDK.Models.User
Assembly
TorBoxSDK.dll

Represents the dashboard filter configuration for a TorBox user.

public sealed record DashboardFilter : IEquatable<DashboardFilter>
Inheritance
DashboardFilter
Implements
Inherited Members

Properties

Active

Gets a value indicating whether active items are shown, or null if not specified.

[JsonPropertyName("active")]
public bool? Active { get; init; }

Property Value

bool?

Borrowed

Gets a value indicating whether borrowed items are shown, or null if not specified.

[JsonPropertyName("borrowed")]
public bool? Borrowed { get; init; }

Property Value

bool?

Cached

Gets a value indicating whether cached items are shown, or null if not specified.

[JsonPropertyName("cached")]
public bool? Cached { get; init; }

Property Value

bool?

Private

Gets a value indicating whether private items are shown, or null if not specified.

[JsonPropertyName("private")]
public bool? Private { get; init; }

Property Value

bool?

Queued

Gets a value indicating whether queued items are shown, or null if not specified.

[JsonPropertyName("queued")]
public bool? Queued { get; init; }

Property Value

bool?