AdultVideo.cs 461 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Entities
  4. {
  5. [Obsolete]
  6. public class AdultVideo : Video, IHasProductionLocations, IHasTaglines
  7. {
  8. public List<string> ProductionLocations { get; set; }
  9. public List<string> Taglines { get; set; }
  10. public AdultVideo()
  11. {
  12. Taglines = new List<string>();
  13. ProductionLocations = new List<string>();
  14. }
  15. }
  16. }