using System.Collections.Generic; namespace API.DTOs.Metadata { public class ChapterMetadataDto { public int Id { get; set; } public string Title { get; set; } public ICollection Writers { get; set; } = new List(); public ICollection Penciller { get; set; } = new List(); public ICollection Inker { get; set; } = new List(); public ICollection Colorist { get; set; } = new List(); public ICollection Letterer { get; set; } = new List(); public ICollection CoverArtist { get; set; } = new List(); public ICollection Editor { get; set; } = new List(); public ICollection Publisher { get; set; } = new List(); public int ChapterId { get; set; } } }