ExtraRule.cs 959 B

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