mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-20 22:10:33 -04:00
18 lines
434 B
C#
18 lines
434 B
C#
namespace API.DTOs.Statistics;
|
|
|
|
public class KavitaPlusMetadataBreakdownDto
|
|
{
|
|
/// <summary>
|
|
/// Total amount of Series
|
|
/// </summary>
|
|
public int TotalSeries { get; set; }
|
|
/// <summary>
|
|
/// Series on the Blacklist (errored or bad match)
|
|
/// </summary>
|
|
public int ErroredSeries { get; set; }
|
|
/// <summary>
|
|
/// Completed so far
|
|
/// </summary>
|
|
public int SeriesCompleted { get; set; }
|
|
}
|