using MediaBrowser.Controller.Providers; using System; using System.Collections.Generic; namespace MediaBrowser.Controller.Entities { [Obsolete] public class AdultVideo : Video, IHasProductionLocations, IHasTaglines { public List ProductionLocations { get; set; } public List Taglines { get; set; } public AdultVideo() { Taglines = new List(); ProductionLocations = new List(); } public override bool BeforeMetadataRefresh() { var hasChanges = base.BeforeMetadataRefresh(); if (!ProductionYear.HasValue) { int? yearInName = null; string name; NameParser.ParseName(Name, out name, out yearInName); if (yearInName.HasValue) { ProductionYear = yearInName; hasChanges = true; } } return hasChanges; } } }