jellyfin/MediaBrowser.Model/Entities/TrailerType.cs
2018-12-27 18:27:57 -05:00

11 lines
225 B
C#

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