mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 20:42:53 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
8 lines
176 B
C#
8 lines
176 B
C#
namespace Kavita.Models.DTOs.Statistics;
|
|
|
|
public sealed record StatCount<T> : ICount<T>
|
|
{
|
|
public T Value { get; set; } = default!;
|
|
public long Count { get; set; }
|
|
}
|