mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 21:54:47 -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>
12 lines
186 B
C#
12 lines
186 B
C#
using System.ComponentModel;
|
|
|
|
namespace API.Entities.Enums.UserPreferences;
|
|
|
|
public enum PdfTheme
|
|
{
|
|
[Description("Dark")]
|
|
Dark = 0,
|
|
[Description("Light")]
|
|
Light = 1
|
|
}
|