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