mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			275 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			275 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using API.Services.Plus;
 | 
						|
 | 
						|
namespace API.DTOs;
 | 
						|
#nullable enable
 | 
						|
 | 
						|
public class RatingDto
 | 
						|
{
 | 
						|
    public int AverageScore { get; set; }
 | 
						|
    public int FavoriteCount { get; set; }
 | 
						|
    public ScrobbleProvider Provider { get; set; }
 | 
						|
    public string? ProviderUrl { get; set; }
 | 
						|
}
 |