using System.Collections.Generic; namespace API.DTOs.SeriesDetail; public sealed record UpdateRelatedSeriesDto { public int SeriesId { get; set; } public IList Adaptations { get; set; } = default!; public IList Characters { get; set; } = default!; public IList Contains { get; set; } = default!; public IList Others { get; set; } = default!; public IList Prequels { get; set; } = default!; public IList Sequels { get; set; } = default!; public IList SideStories { get; set; } = default!; public IList SpinOffs { get; set; } = default!; public IList AlternativeSettings { get; set; } = default!; public IList AlternativeVersions { get; set; } = default!; public IList Doujinshis { get; set; } = default!; public IList Editions { get; set; } = default!; public IList Annuals { get; set; } = default!; }