mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-04-02 23:33:41 -04:00
14 lines
425 B
C#
14 lines
425 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kavita.Models.DTOs.Reader;
|
|
|
|
public sealed record MarkMultipleSeriesAsReadDto
|
|
{
|
|
public IReadOnlyList<int> SeriesIds { get; init; } = default!;
|
|
/// <summary>
|
|
/// If true, generates a new reading session for the user. Based on the estimated time from the current progress
|
|
/// till the end
|
|
/// </summary>
|
|
public bool GenerateReadingSession { get; init; }
|
|
}
|