using System.Collections.Generic; using API.DTOs.Person; namespace API.DTOs.ReadingLists; public sealed record ReadingListCast { public ICollection Writers { get; set; } = []; public ICollection CoverArtists { get; set; } = []; public ICollection Publishers { get; set; } = []; public ICollection Characters { get; set; } = []; public ICollection Pencillers { get; set; } = []; public ICollection Inkers { get; set; } = []; public ICollection Imprints { get; set; } = []; public ICollection Colorists { get; set; } = []; public ICollection Letterers { get; set; } = []; public ICollection Editors { get; set; } = []; public ICollection Translators { get; set; } = []; public ICollection Teams { get; set; } = []; public ICollection Locations { get; set; } = []; }