mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 13:44:31 -04:00
* Fixed In Progress and removed comments * Tap to Paginate user setting is implemented. Fixes #193
17 lines
615 B
C#
17 lines
615 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; }
|
|
public bool BookReaderDarkMode { get; set; } = false;
|
|
public int BookReaderMargin { get; set; }
|
|
public int BookReaderLineSpacing { get; set; }
|
|
public int BookReaderFontSize { get; set; }
|
|
public string BookReaderFontFamily { get; set; }
|
|
public bool BookReaderTapToPaginate { get; set; }
|
|
}
|
|
} |