namespace API.DTOs;
/// 
/// Used for running some task against a Series.
/// 
public class 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;
}