mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			455 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			455 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.DTOs.Statistics;
 | 
						|
#nullable enable
 | 
						|
 | 
						|
public sealed record TopReadDto
 | 
						|
{
 | 
						|
    public int UserId { get; set; }
 | 
						|
    public string? Username { get; set; } = default!;
 | 
						|
    /// <summary>
 | 
						|
    /// Amount of time read on Comic libraries
 | 
						|
    /// </summary>
 | 
						|
    public float ComicsTime { get; set; }
 | 
						|
    /// <summary>
 | 
						|
    /// Amount of time read on
 | 
						|
    /// </summary>
 | 
						|
    public float BooksTime { get; set; }
 | 
						|
    public float MangaTime { get; set; }
 | 
						|
}
 | 
						|
 |