namespace API.DTOs.Metadata.Browse;
public sealed record BrowseGenreDto : GenreTagDto
{
///
/// Number of Series this Entity is on
///
public int SeriesCount { get; set; }
///
/// Number of Chapters this Entity is on
///
public int ChapterCount { get; set; }
}