mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-09 00:03:21 -05:00
19 lines
675 B
C#
19 lines
675 B
C#
namespace API.DTOs.OPDS.Requests;
|
|
|
|
/// <summary>
|
|
/// A special case for dealing with lower level entities (volume/chapter) which need higher level entity ids
|
|
/// </summary>
|
|
/// <remarks>Not all variables will always be used. Implementation will use</remarks>
|
|
public sealed record OpdsItemsFromCompoundEntityIdsRequest : IOpdsRequest, IOpdsPagination
|
|
{
|
|
public string ApiKey { get; init; }
|
|
public string Prefix { get; init; }
|
|
public string BaseUrl { get; init; }
|
|
public int UserId { get; init; }
|
|
public int PageNumber { get; init; }
|
|
|
|
public int SeriesId { get; init; }
|
|
public int VolumeId { get; init; }
|
|
public int ChapterId { get; init; }
|
|
}
|