#nullable enable using System.Collections.Generic; using API.DTOs.SeriesDetail; namespace API.DTOs; public sealed record ChapterDetailPlusDto { public float Rating { get; set; } public bool HasBeenRated { get; set; } public IList Reviews { get; set; } = []; public IList Ratings { get; set; } = []; }