TrailerType.cs 226 B

1234567891011
  1. namespace MediaBrowser.Model.Entities
  2. {
  3. public enum TrailerType
  4. {
  5. ComingSoonToTheaters = 1,
  6. ComingSoonToDvd = 2,
  7. ComingSoonToStreaming = 3,
  8. Archive = 4,
  9. LocalTrailer = 5
  10. }
  11. }