using System.Collections.Generic; using API.Entities.Enums; namespace API.DTOs.SeriesDetail; public class RelatedSeriesDto { /// /// The parent relationship Series /// public int SourceSeriesId { get; set; } public IEnumerable Sequels { get; set; } public IEnumerable Prequels { get; set; } public IEnumerable SpinOffs { get; set; } public IEnumerable Adaptations { get; set; } public IEnumerable SideStories { get; set; } public IEnumerable Characters { get; set; } public IEnumerable Contains { get; set; } public IEnumerable Others { get; set; } public IEnumerable AlternativeSettings { get; set; } public IEnumerable AlternativeVersions { get; set; } public IEnumerable Doujinshis { get; set; } public IEnumerable Parent { get; set; } public IEnumerable Editions { get; set; } }