Kavita/API/DTOs/OPDS/Requests/OpdsSearchRequest.cs
Joe Milazzo 5290fd8959
Text View, View & Filter All Annotations, and More OPDS Love (#4062)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
2025-09-28 12:28:21 -07:00

11 lines
293 B
C#

namespace API.DTOs.OPDS.Requests;
public sealed record OpdsSearchRequest : IOpdsRequest
{
public string ApiKey { get; init; }
public string Prefix { get; init; }
public string BaseUrl { get; init; }
public int UserId { get; init; }
public string Query { get; init; }
}