24 lines
298 B
C#
24 lines
298 B
C#
namespace Modules.Library.WebApi.Models;
|
|
|
|
public enum AnimeEpisodeType
|
|
{
|
|
Regilar,
|
|
FullLength,
|
|
Ova,
|
|
}
|
|
|
|
public enum MediaInfoType
|
|
{
|
|
Image,
|
|
Video,
|
|
Link,
|
|
OtherFile
|
|
}
|
|
|
|
public enum NameType
|
|
{
|
|
Original,
|
|
OriginalInAnotherLanguage,
|
|
Translation,
|
|
Abbreviation,
|
|
} |