Fixed a bug with user reviews (#2677)
This commit is contained in:
parent
828d62dfe9
commit
a9ab84803e
5 changed files with 22 additions and 10 deletions
|
@ -9,7 +9,7 @@ namespace API.DTOs.SeriesDetail;
|
|||
/// <remarks>This is what the UI sees, not what the API sends back</remarks>
|
||||
public class SeriesDetailPlusDto
|
||||
{
|
||||
public RecommendationDto Recommendations { get; set; }
|
||||
public RecommendationDto? Recommendations { get; set; }
|
||||
public IEnumerable<UserReviewDto> Reviews { get; set; }
|
||||
public IEnumerable<RatingDto> Ratings { get; set; }
|
||||
public IEnumerable<RatingDto>? Ratings { get; set; }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue