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:
parent
6d4dfcda67
commit
da99c97813
21 changed files with 231 additions and 40 deletions
|
|
@ -1,7 +1,17 @@
|
|||
using System.ComponentModel;
|
||||
|
||||
namespace API.Entities.Enums;
|
||||
|
||||
public enum RatingAuthority
|
||||
{
|
||||
/// <summary>
|
||||
/// Rating was from a User (internet or local)
|
||||
/// </summary>
|
||||
[Description("User")]
|
||||
User = 0,
|
||||
/// <summary>
|
||||
/// Rating was from Professional Critics
|
||||
/// </summary>
|
||||
[Description("Critic")]
|
||||
Critic = 1,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue