mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
19 lines
589 B
C#
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; }
|
|
}
|