jellyfin-server/MediaBrowser.Model/Entities/TrailerType.cs

11 lines
225 B
C#
Raw Normal View History

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