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