jellyfin/MediaBrowser.Model/Entities/TrailerType.cs
Luke Pulverenti db1bf5b1b5 audio podcast
2016-03-19 15:32:37 -04:00

11 lines
225 B
C#

namespace MediaBrowser.Model.Entities
{
public enum TrailerType
{
ComingSoonToTheaters = 1,
ComingSoonToDvd = 2,
ComingSoonToStreaming = 3,
Archive = 4,
LocalTrailer = 5
}
}