jellyfin/MediaBrowser.Model/Entities/TrailerType.cs
2014-10-08 19:31:44 -04:00

10 lines
199 B
C#

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