Added book reader reading direction preference (#249)

This commit is contained in:
Joseph Milazzo 2021-06-03 09:05:07 -05:00 committed by GitHub
parent ec0327272f
commit 03c9b7a11d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 892 additions and 0 deletions

View file

@ -43,6 +43,10 @@ namespace API.Entities
/// </summary>
public bool BookReaderTapToPaginate { get; set; } = false;
/// <summary>
/// Book Reader Option: What direction should the next/prev page buttons go
/// </summary>
public ReadingDirection BookReaderReadingDirection { get; set; } = ReadingDirection.LeftToRight;
/// <summary>
/// UI Site Global Setting: Whether the UI should render in Dark mode or not.
/// </summary>
public bool SiteDarkMode { get; set; }