mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-01 20:54:12 -04:00
9 lines
186 B
C#
9 lines
186 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.Reader;
|
|
|
|
public sealed record MarkMultipleSeriesAsReadDto
|
|
{
|
|
public IReadOnlyList<int> SeriesIds { get; init; } = default!;
|
|
}
|