Reading List Detail Overhaul + More Bugfixes and Polish (#3687)
Co-authored-by: Yongun Seong <yseong.p@gmail.com>
This commit is contained in:
parent
b2ee651fb8
commit
dad212bfb9
71 changed files with 5056 additions and 729 deletions
20
API/DTOs/ReadingLists/ReadingListCast.cs
Normal file
20
API/DTOs/ReadingLists/ReadingListCast.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace API.DTOs.ReadingLists;
|
||||
|
||||
public class ReadingListCast
|
||||
{
|
||||
public ICollection<PersonDto> Writers { get; set; } = [];
|
||||
public ICollection<PersonDto> CoverArtists { get; set; } = [];
|
||||
public ICollection<PersonDto> Publishers { get; set; } = [];
|
||||
public ICollection<PersonDto> Characters { get; set; } = [];
|
||||
public ICollection<PersonDto> Pencillers { get; set; } = [];
|
||||
public ICollection<PersonDto> Inkers { get; set; } = [];
|
||||
public ICollection<PersonDto> Imprints { get; set; } = [];
|
||||
public ICollection<PersonDto> Colorists { get; set; } = [];
|
||||
public ICollection<PersonDto> Letterers { get; set; } = [];
|
||||
public ICollection<PersonDto> Editors { get; set; } = [];
|
||||
public ICollection<PersonDto> Translators { get; set; } = [];
|
||||
public ICollection<PersonDto> Teams { get; set; } = [];
|
||||
public ICollection<PersonDto> Locations { get; set; } = [];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue