using Emby.Naming.Common;
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 string 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; }
}
}