Table of Contents

Class UsenetSearchResponse

Namespace
TorBoxSDK.Models.Search
Assembly
TorBoxSDK.dll

Represents the wrapper response for a usenet search containing metadata and results.

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

Properties

Metadata

Gets the metadata about the search result, or null if not available.

[JsonPropertyName("metadata")]
public MetaSearchResult? Metadata { get; init; }

Property Value

MetaSearchResult

Nzbs

Gets the list of usenet search results.

[JsonPropertyName("nzbs")]
public IReadOnlyList<UsenetSearchResult> Nzbs { get; init; }

Property Value

IReadOnlyList<UsenetSearchResult>