mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-18 03:19:06 -07:00
10 lines
199 B
C#
10 lines
199 B
C#
|
namespace MediaBrowser.Model.Entities
|
||
|
{
|
||
|
public enum TrailerType
|
||
|
{
|
||
|
ComingSoonToTheaters = 1,
|
||
|
ComingSoonToDvd = 2,
|
||
|
ComingSoonToStreaming = 3,
|
||
|
Archive = 4
|
||
|
}
|
||
|
}
|