Kavita/API/DTOs/Person/BrowsePersonDto.cs
Joseph Milazzo 9844503671 Fixed up code comments for Amelia.
Fixed a bug where not all detail pages had the same size font.

Fixed series detail page not having subtitle as a themeable variable (--detail-subtitle-color).
2025-05-07 19:01:03 -05:00

18 lines
447 B
C#

using API.DTOs.Person;
namespace API.DTOs;
/// <summary>
/// Used to browse writers and click in to see their series
/// </summary>
public class BrowsePersonDto : PersonDto
{
/// <summary>
/// Number of Series this Person is the Writer for
/// </summary>
public int SeriesCount { get; set; }
/// <summary>
/// Number or Issues this Person is the Writer for
/// </summary>
public int IssueCount { get; set; }
}