ExtraRule.cs 833 B

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