namespace API.DTOs;
///
/// Used for running some task against a Series.
///
public sealed record RefreshSeriesDto
{
///
/// Library Id series belongs to
///
public int LibraryId { get; init; }
///
/// Series Id
///
public int SeriesId { get; init; }
///
/// Should the task force opening/re-calculation.
///
/// This is expensive if true. Defaults to true.
public bool ForceUpdate { get; init; } = true;
///
/// Should the task force re-calculation of colorscape.
///
/// This is expensive if true. Defaults to true.
public bool ForceColorscape { get; init; } = false;
}