mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	* Added book reader reading direction preference * Adds a new marker to the AppUserProgress to capture nearest anchor for resuming scroll point when reading books. Refactored bookmark api to return a BookmarkDto which includes this new data.
		
			
				
	
	
		
			15 lines
		
	
	
		
			503 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			503 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.DTOs
 | 
						|
{
 | 
						|
    public class BookmarkDto
 | 
						|
    {
 | 
						|
        public int VolumeId { get; set; }
 | 
						|
        public int ChapterId { get; set; }
 | 
						|
        public int PageNum { get; set; }
 | 
						|
        public int SeriesId { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        /// For Book reader, this can be an optional string of the id of a part marker, to help resume reading position
 | 
						|
        /// on pages that combine multiple "chapters".
 | 
						|
        /// </summary>
 | 
						|
        public string BookScrollId { get; set; }
 | 
						|
    }
 | 
						|
} |