ExtraRule.cs 928 B

12345678910111213141516171819202122232425262728293031323334
  1. #pragma warning disable CS1591
  2. using MediaBrowser.Model.Entities;
  3. using MediaType = Emby.Naming.Common.MediaType;
  4. namespace Emby.Naming.Video
  5. {
  6. public class ExtraRule
  7. {
  8. /// <summary>
  9. /// Gets or sets the token.
  10. /// </summary>
  11. /// <value>The token.</value>
  12. public string Token { get; set; }
  13. /// <summary>
  14. /// Gets or sets the type of the extra.
  15. /// </summary>
  16. /// <value>The type of the extra.</value>
  17. public ExtraType ExtraType { get; set; }
  18. /// <summary>
  19. /// Gets or sets the type of the rule.
  20. /// </summary>
  21. /// <value>The type of the rule.</value>
  22. public ExtraRuleType RuleType { get; set; }
  23. /// <summary>
  24. /// Gets or sets the type of the media.
  25. /// </summary>
  26. /// <value>The type of the media.</value>
  27. public MediaType MediaType { get; set; }
  28. }
  29. }