Fesaa c62b20f54b
BE Tech Debt (#4497)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
2026-03-07 10:04:08 -08:00

15 lines
286 B
C#

using System.Collections.Generic;
namespace Kavita.Models.DTOs.Statistics;
public sealed record BreakDownDto<T>
{
public IList<StatCount<T>> Data { get; set; }
public int Total { get; set; }
public int TotalOptions { get; set; }
public int Missing { get; set; }
}