mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			436 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			436 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using API.Entities.Enums;
 | 
						|
 | 
						|
namespace API.DTOs
 | 
						|
{
 | 
						|
    public class UserPreferencesDto
 | 
						|
    {
 | 
						|
        public ReadingDirection ReadingDirection { get; set; }
 | 
						|
        public ScalingOption ScalingOption { get; set; }
 | 
						|
        public PageSplitOption PageSplitOption { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        /// Whether UI hides read Volumes on Details page
 | 
						|
        /// </summary>
 | 
						|
        public bool HideReadOnDetails { get; set; }
 | 
						|
    }
 | 
						|
} |