mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
Co-authored-by: Stepan Goremykin <s.goremykin@proton.me> Co-authored-by: goremykin <goremukin@gmail.com> Co-authored-by: Christopher <39032787+MrRobotjs@users.noreply.github.com> Co-authored-by: Fesaa <77553571+Fesaa@users.noreply.github.com>
14 lines
339 B
C#
14 lines
339 B
C#
namespace API.DTOs.Metadata.Browse;
|
|
|
|
public sealed record BrowseGenreDto : GenreTagDto
|
|
{
|
|
/// <summary>
|
|
/// Number of Series this Entity is on
|
|
/// </summary>
|
|
public int SeriesCount { get; set; }
|
|
/// <summary>
|
|
/// Number of Chapters this Entity is on
|
|
/// </summary>
|
|
public int ChapterCount { get; set; }
|
|
}
|