using System.Collections.Generic; using API.DTOs.Recommendation; namespace API.DTOs.SeriesDetail; /// /// All the data from Kavita+ for Series Detail /// /// This is what the UI sees, not what the API sends back public class SeriesDetailPlusDto { public RecommendationDto? Recommendations { get; set; } public IEnumerable Reviews { get; set; } public IEnumerable? Ratings { get; set; } }