namespace API.DTOs;
///
/// 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 or Issues this Person is the Writer for
///
public int IssueCount { get; set; }
}