ExtraType.cs 445 B

123456789101112131415161718192021222324
  1. 
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. public enum ExtraType
  5. {
  6. Clip = 1,
  7. Trailer = 2,
  8. BehindTheScenes = 3,
  9. DeletedScene = 4,
  10. Interview = 5,
  11. Scene = 6,
  12. Sample = 7,
  13. ThemeSong = 8,
  14. ThemeVideo = 9
  15. }
  16. public enum TrailerType
  17. {
  18. ComingSoonToTheaters = 1,
  19. ComingSoonToDvd = 2,
  20. ComingSoonToStreaming = 3,
  21. Archive = 4
  22. }
  23. }