jellyfin/MediaBrowser.Model/Entities/TrailerType.cs
2019-01-13 20:31:15 +01:00

12 lines
226 B
C#

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