#pragma warning disable CS1591 #pragma warning disable SA1600 using MediaBrowser.Model.Entities; using MediaType = Emby.Naming.Common.MediaType; namespace Emby.Naming.Video { public class ExtraRule { /// /// Gets or sets the token. /// /// The token. public string Token { get; set; } /// /// Gets or sets the type of the extra. /// /// The type of the extra. public ExtraType ExtraType { get; set; } /// /// Gets or sets the type of the rule. /// /// The type of the rule. public ExtraRuleType RuleType { get; set; } /// /// Gets or sets the type of the media. /// /// The type of the media. public MediaType MediaType { get; set; } } }