mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
* Stashing code * removed some debug code on series detail page. Now detail is collapsed by default. * Added AgeRating * Fixed a crash when NetVips tries to write a cover file and cover directory is not existing. * When a card is selected for bulk actions, show an outline in addition to select box * Added AgeRating into the metadata parsing. Added a hack where ComicInfo uses Number in ComicInfo rather than Volume. This is to test out the effects on users libraries. * Added AgeRating and ReleaseDate to the metadata implelentation.
36 lines
751 B
C#
36 lines
751 B
C#
using System.ComponentModel;
|
|
|
|
namespace API.Entities.Enums;
|
|
|
|
public enum AgeRating
|
|
{
|
|
[Description("Unknown")]
|
|
Unknown = 0,
|
|
[Description("Rating Pending")]
|
|
RatingPending = 1,
|
|
[Description("Early Childhood")]
|
|
EarlyChildhood = 2,
|
|
[Description("Everyone")]
|
|
Everyone = 3,
|
|
[Description("G")]
|
|
G = 4,
|
|
[Description("Everyone 10+")]
|
|
Everyone10Plus = 5,
|
|
[Description("Kids to Adults")]
|
|
KidsToAdults = 6,
|
|
[Description("Teen")]
|
|
Teen = 7,
|
|
[Description("Mature 15+")]
|
|
Mature15Plus = 8,
|
|
[Description("Mature 17+")]
|
|
Mature17Plus = 9,
|
|
[Description("Mature")]
|
|
Mature = 10,
|
|
[Description("Adults Only 18+")]
|
|
AdultsOnly = 11,
|
|
[Description("X 18+")]
|
|
X18Plus = 12
|
|
|
|
|
|
}
|