Enums as string

This commit is contained in:
2025-10-15 23:41:26 +02:00
parent 565cf01114
commit 626131b9b8
15 changed files with 838 additions and 44 deletions

View File

@@ -1,11 +1,10 @@
namespace API.MangaDownloadClients;
public enum RequestType : byte
public enum RequestType
{
Default = 0,
MangaDexFeed = 1,
MangaImage = 2,
MangaCover = 3,
MangaDexImage = 5,
MangaInfo = 6
Default,
MangaDexFeed,
MangaImage,
MangaCover,
MangaInfo
}