blob: 73be5d7caebadca022828b69c28ef37528fa2b95 (
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
}
}
|