mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-20 14:00:34 -04:00
Co-authored-by: Elry <144011449+ElryWeeb@users.noreply.github.com> Co-authored-by: AlienHack <the4got10@windowslive.com> Co-authored-by: William Brockhus <pickeringw@gmail.com> Co-authored-by: Shivam Amin <xShivam.Amin@gmail.com>
14 lines
227 B
C#
14 lines
227 B
C#
using System.ComponentModel;
|
|
|
|
namespace API.Entities.Enums.UserPreferences;
|
|
|
|
public enum PdfSpreadMode
|
|
{
|
|
[Description("None")]
|
|
None = 0,
|
|
[Description("Odd")]
|
|
Odd = 1,
|
|
[Description("Even")]
|
|
Even = 2
|
|
}
|