Added initial voice work search provider logic.
This commit is contained in:
8
JSMR.Application/Common/AIGeneration.cs
Normal file
8
JSMR.Application/Common/AIGeneration.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace JSMR.Application.Common;
|
||||
|
||||
public enum AIGeneration
|
||||
{
|
||||
None = 0,
|
||||
Partial = 1,
|
||||
Full = 2
|
||||
}
|
||||
8
JSMR.Application/Common/AgeRating.cs
Normal file
8
JSMR.Application/Common/AgeRating.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace JSMR.Application.Common;
|
||||
|
||||
public enum AgeRating
|
||||
{
|
||||
AllAges = 1,
|
||||
R15 = 2,
|
||||
R18 = 3
|
||||
}
|
||||
10
JSMR.Application/Common/Locale.cs
Normal file
10
JSMR.Application/Common/Locale.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace JSMR.Application.Common;
|
||||
|
||||
public enum Locale
|
||||
{
|
||||
Japanese,
|
||||
English,
|
||||
ChineseSimplified,
|
||||
ChineseTraditional,
|
||||
Korean
|
||||
}
|
||||
9
JSMR.Application/Common/VoiceWorkStatus.cs
Normal file
9
JSMR.Application/Common/VoiceWorkStatus.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace JSMR.Application.Common;
|
||||
|
||||
public enum VoiceWorkStatus
|
||||
{
|
||||
Available = 0,
|
||||
Upcoming = 1,
|
||||
NewRelease = 2,
|
||||
NewAndUpcoming = 3
|
||||
}
|
||||
Reference in New Issue
Block a user