Hooked up average rating for the issue, external ratings for individual issues (cbr only), and some polish.

Show Issues not Chapters for CBR matches.
This commit is contained in:
Joseph Milazzo 2025-04-29 10:05:01 -05:00
parent 6d4dfcda67
commit da99c97813
21 changed files with 231 additions and 40 deletions

View file

@ -9,6 +9,6 @@ public class ChapterDetailPlusDto
public float Rating { get; set; }
public bool HasBeenRated { get; set; }
public List<UserReviewDto> Reviews { get; set; }
public List<RatingDto>? Ratings { get; set; }
public IList<UserReviewDto> Reviews { get; set; } = [];
public IList<RatingDto> Ratings { get; set; } = [];
}