aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/TrailerType.cs
blob: 085f461cfbc3ddcb18778ebfe2021bc4f14ba80a (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace MediaBrowser.Model.Entities
{
    public enum TrailerType
    {
        ComingSoonToTheaters = 1,
        ComingSoonToDvd = 2,
        ComingSoonToStreaming = 3,
        Archive = 4,
        LocalTrailer = 5
    }
}