Kavita/Kavita.Models/DTOs/OPDS/Requests/OpdsItemsFromCompoundEntityIdsRequest.cs
Fesaa c62b20f54b
BE Tech Debt (#4497)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
2026-03-07 10:04:08 -08:00

22 lines
799 B
C#

using Kavita.Models.Entities.Enums.UserPreferences;
namespace Kavita.Models.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 AppUserOpdsPreferences Preferences { get; init; }
public int PageNumber { get; init; }
public int SeriesId { get; init; }
public int VolumeId { get; init; }
public int ChapterId { get; init; }
}