using System.Collections.Generic; using API.Entities; namespace API.DTOs { public class SeriesMetadataDto { public int Id { get; set; } public ICollection Genres { get; set; } public ICollection Tags { get; set; } public ICollection Persons { get; set; } public string Publisher { get; set; } public int SeriesId { get; set; } } }