All checks were successful
continuous-integration/drone/push Build is passing
13 lines
118 B
C#
13 lines
118 B
C#
namespace CinemaLib.API;
|
|
|
|
public enum ItemType
|
|
{
|
|
TVShow,
|
|
Concert,
|
|
Anime,
|
|
Movie,
|
|
Season,
|
|
Episode,
|
|
All,
|
|
}
|