mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 20:15:26 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
15 lines
480 B
C#
15 lines
480 B
C#
namespace Kavita.Models.Constants;
|
|
|
|
public static class ParserConstants
|
|
{
|
|
public const string DefaultChapter = "-100000";
|
|
public const string LooseLeafVolume = "-100000";
|
|
public const int DefaultChapterNumber = -100_000;
|
|
public const int LooseLeafVolumeNumber = -100_000;
|
|
/// <summary>
|
|
/// The Volume Number of Specials to reside in
|
|
/// </summary>
|
|
public const int SpecialVolumeNumber = 100_000;
|
|
public const string SpecialVolume = "100000";
|
|
}
|