Kavita/API/DTOs/SeriesDetail/SeriesDetailPlusDto.cs
2025-05-04 07:14:44 -07:00

19 lines
589 B
C#

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