18 lines
399 B
C#
18 lines
399 B
C#
// <copyright file="TrailerType.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
public enum TrailerType
|
|
{
|
|
ComingSoonToTheaters = 1,
|
|
ComingSoonToDvd = 2,
|
|
ComingSoonToStreaming = 3,
|
|
Archive = 4,
|
|
LocalTrailer = 5
|
|
}
|
|
}
|