Class TorrentSearchResponse
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
Torrents
Gets the list of torrent search results.
[JsonPropertyName("torrents")]
public IReadOnlyList<TorrentSearchResult> Torrents { get; init; }