Class UsenetSearchResponse
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
Nzbs
Gets the list of usenet search results.
[JsonPropertyName("nzbs")]
public IReadOnlyList<UsenetSearchResult> Nzbs { get; init; }