mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	Co-authored-by: Fesaa <77553571+Fesaa@users.noreply.github.com> Co-authored-by: Weblate (bot) <hosted@weblate.org> Co-authored-by: Gregory.Open <gregory.open@proton.me> Co-authored-by: Mateusz <mateuszvx8.96@gmail.com> Co-authored-by: majora2007 <kavitareader@gmail.com> Co-authored-by: 無情天 <kofzhanganguo@126.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			447 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			447 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.DTOs.Statistics;
 | 
						|
#nullable enable
 | 
						|
 | 
						|
public class 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; }
 | 
						|
}
 | 
						|
 |