jellyfin/MediaBrowser.Model/Entities/TrailerType.cs

11 lines
225 B
C#
Raw Normal View History

2014-10-09 01:31:44 +02:00
namespace MediaBrowser.Model.Entities
{
public enum TrailerType
{
ComingSoonToTheaters = 1,
ComingSoonToDvd = 2,
ComingSoonToStreaming = 3,
2016-03-19 20:32:37 +01:00
Archive = 4,
LocalTrailer = 5
2014-10-09 01:31:44 +02:00
}
}