mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			697 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			697 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using API.Entities.Enums;
 | 
						|
 | 
						|
namespace API.Entities
 | 
						|
{
 | 
						|
    public class AppUserPreferences
 | 
						|
    {
 | 
						|
        public int Id { get; set; }
 | 
						|
        public ReadingDirection ReadingDirection { get; set; } = ReadingDirection.LeftToRight;
 | 
						|
        public ScalingOption ScalingOption { get; set; } = ScalingOption.FitToHeight;
 | 
						|
        public PageSplitOption PageSplitOption { get; set; } = PageSplitOption.SplitRightToLeft;
 | 
						|
        /// <summary>
 | 
						|
        /// Whether UI hides read Volumes on Details page
 | 
						|
        /// </summary>
 | 
						|
        public bool HideReadOnDetails { get; set; } = false;
 | 
						|
        
 | 
						|
        
 | 
						|
        
 | 
						|
        public AppUser AppUser { get; set; }
 | 
						|
        public int AppUserId { get; set; }
 | 
						|
    }
 | 
						|
} |