namespace API.DTOs.Statistics;
public class KavitaPlusMetadataBreakdownDto
{
///
/// Total amount of Series
///
public int TotalSeries { get; set; }
///
/// Series on the Blacklist (errored or bad match)
///
public int ErroredSeries { get; set; }
///
/// Completed so far
///
public int SeriesCompleted { get; set; }
}