TrailerType.cs 199 B

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