mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 02:27:04 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections.Generic;
 | |
| using API.Entities.Enums;
 | |
| using API.Services.Plus;
 | |
| 
 | |
| namespace API.Entities.Metadata;
 | |
| 
 | |
| /// <summary>
 | |
| /// Represents an Externally supplied Review for a given Series
 | |
| /// </summary>
 | |
| public class ExternalReview
 | |
| {
 | |
|     public int Id { get; set; }
 | |
|     public string Tagline { get; set; }
 | |
|     public required string Body { get; set; }
 | |
|     /// <summary>
 | |
|     /// Pure text version of the body
 | |
|     /// </summary>
 | |
|     public required string BodyJustText { get; set; }
 | |
|     /// <summary>
 | |
|     /// Raw from the provider. Usually Markdown
 | |
|     /// </summary>
 | |
|     public string RawBody { get; set; }
 | |
|     public required ScrobbleProvider Provider { get; set; }
 | |
|     public RatingAuthority Authority { get; set; } = RatingAuthority.User;
 | |
|     public string SiteUrl { get; set; }
 | |
|     /// <summary>
 | |
|     /// Reviewer's username
 | |
|     /// </summary>
 | |
|     public string Username { get; set; }
 | |
|     /// <summary>
 | |
|     /// An Optional Rating coming from the Review
 | |
|     /// </summary>
 | |
|     public int Rating { get; set; } = 0;
 | |
|     /// <summary>
 | |
|     /// The media's overall Score
 | |
|     /// </summary>
 | |
|     public int Score { get; set; }
 | |
|     public int TotalVotes { get; set; }
 | |
| 
 | |
| 
 | |
|     public int SeriesId { get; set; }
 | |
|     public int? ChapterId { get; set; }
 | |
| 
 | |
|     // Relationships
 | |
|     public ICollection<ExternalSeriesMetadata> ExternalSeriesMetadatas { get; set; } = null!;
 | |
| }
 |