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>
19 lines
465 B
C#
19 lines
465 B
C#
using API.DTOs.Person;
|
|
|
|
namespace API.DTOs.Metadata.Browse;
|
|
|
|
/// <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 of Issues this Person is the Writer for
|
|
/// </summary>
|
|
public int ChapterCount { get; set; }
|
|
}
|