2019-12-13 19:11:37 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2020-01-09 17:26:22 +00:00
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
using MediaType = Emby.Naming.Common.MediaType;
|
2018-09-12 17:26:21 +00:00
|
|
|
|
|
|
|
namespace Emby.Naming.Video
|
|
|
|
{
|
|
|
|
public class ExtraRule
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the token.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The token.</value>
|
|
|
|
public string Token { get; set; }
|
2019-12-06 19:40:06 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the type of the extra.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The type of the extra.</value>
|
2020-01-09 17:26:22 +00:00
|
|
|
public ExtraType ExtraType { get; set; }
|
2019-12-06 19:40:06 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the type of the rule.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The type of the rule.</value>
|
|
|
|
public ExtraRuleType RuleType { get; set; }
|
2019-12-06 19:40:06 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the type of the media.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The type of the media.</value>
|
|
|
|
public MediaType MediaType { get; set; }
|
|
|
|
}
|
|
|
|
}
|