13 lines
124 B
C#
13 lines
124 B
C#
namespace StreamCinemaLib.API;
|
|
|
|
public enum ItemType
|
|
{
|
|
TVShow,
|
|
Concert,
|
|
Anime,
|
|
Movie,
|
|
Season,
|
|
Episode,
|
|
All,
|
|
}
|