mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 20:15:26 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
10 lines
255 B
C#
10 lines
255 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kavita.Models.DTOs.ReadingLists;
|
|
|
|
public sealed record UpdateReadingListByMultipleSeriesDto
|
|
{
|
|
public int ReadingListId { get; init; }
|
|
public IReadOnlyList<int> SeriesIds { get; init; } = default!;
|
|
}
|