13 lines
328 B
C#
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; }
|
|
}
|