using System.Collections.Generic; namespace API.DTOs.SeriesDetail; public class UpdateRelatedSeriesDto { public int SeriesId { get; set; } public IList Adaptations { get; set; } public IList Characters { get; set; } public IList Contains { get; set; } public IList Others { get; set; } public IList Prequels { get; set; } public IList Sequels { get; set; } public IList SideStories { get; set; } public IList SpinOffs { get; set; } public IList AlternativeSettings { get; set; } public IList AlternativeVersions { get; set; } public IList Doujinshis { get; set; } }