mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-01-19 18:35:53 -05:00
14 lines
397 B
C#
14 lines
397 B
C#
using API.Entities.Enums.UserPreferences;
|
|
|
|
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 AppUserOpdsPreferences Preferences { get; init; }
|
|
public string Query { get; init; }
|
|
}
|