Kavita/API/DTOs/Metadata/BrowseGenreDto.cs
Joseph Milazzo 2e80316057 Added the ability to browse different genres (still needs polish).
Fixed a rare bug with crypto.UUID by backfilling it.
2025-06-06 17:02:42 -05:00

13 lines
328 B
C#

namespace API.DTOs.Metadata;
public sealed record BrowseGenreDto : GenreTagDto
{
/// <summary>
/// Number of Series this Entity is on
/// </summary>
public int SeriesCount { get; set; }
/// <summary>
/// Number of Issues this Entity is on
/// </summary>
public int IssueCount { get; set; }
}