Table of Contents

Class TorrentSearchResponse

Namespace
TorBoxSDK.Models.Search
Assembly
TorBoxSDK.dll

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

public sealed record TorrentSearchResponse : IEquatable<TorrentSearchResponse>
Inheritance
TorrentSearchResponse
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

Torrents

Gets the list of torrent search results.

[JsonPropertyName("torrents")]
public IReadOnlyList<TorrentSearchResult> Torrents { get; init; }

Property Value

IReadOnlyList<TorrentSearchResult>