mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-09 08:13:20 -05:00
11 lines
293 B
C#
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; }
|
|
}
|