mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 20:42:53 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
21 lines
462 B
C#
21 lines
462 B
C#
using System.ComponentModel;
|
|
|
|
namespace Kavita.Models.Entities.Enums;
|
|
|
|
/// <summary>
|
|
/// Represents the writing styles for the book-reader
|
|
/// </summary>
|
|
public enum WritingStyle
|
|
{
|
|
/// <summary>
|
|
/// Horizontal writing style for the book-reader
|
|
/// </summary>
|
|
[Description ("Horizontal")]
|
|
Horizontal = 0,
|
|
/// <summary>
|
|
/// Vertical writing style for the book-reader
|
|
/// </summary>
|
|
[Description ("Vertical")]
|
|
Vertical = 1
|
|
}
|