mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-24 08:32:29 -04:00
21448a86ba
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
15 lines
351 B
C#
15 lines
351 B
C#
using System.ComponentModel;
|
|
|
|
namespace API.Entities.Enums;
|
|
|
|
/// <summary>
|
|
/// Due to a bleeding text bug in the Epub reader with 1/2 column layout, multiple calculation modes are present
|
|
/// </summary>
|
|
public enum EpubPageCalculationMethod
|
|
{
|
|
[Description("Default")]
|
|
Default = 0,
|
|
[Description("Calculation 1")]
|
|
Calculation1 = 1,
|
|
}
|