implement fetcher priority adjustment

This commit is contained in:
Luke Pulverenti
2014-02-11 16:41:01 -05:00
parent 17bf59dfe3
commit 16bc3a6d77
22 changed files with 71 additions and 237 deletions

View File

@@ -1,7 +1,8 @@
using System.Collections.Generic;
namespace MediaBrowser.Controller.Entities
{
public class AdultVideo : Video, IHasPreferredMetadataLanguage
public class AdultVideo : Video, IHasPreferredMetadataLanguage, IHasTaglines
{
/// <summary>
/// Gets or sets the preferred metadata language.
@@ -14,5 +15,12 @@ namespace MediaBrowser.Controller.Entities
/// </summary>
/// <value>The preferred metadata country code.</value>
public string PreferredMetadataCountryCode { get; set; }
public List<string> Taglines { get; set; }
public AdultVideo()
{
Taglines = new List<string>();
}
}
}