2
0

ExtraResult.cs 423 B

12345678910111213141516
  1. namespace Emby.Naming.Video
  2. {
  3. public class ExtraResult
  4. {
  5. /// <summary>
  6. /// Gets or sets the type of the extra.
  7. /// </summary>
  8. /// <value>The type of the extra.</value>
  9. public string ExtraType { get; set; }
  10. /// <summary>
  11. /// Gets or sets the rule.
  12. /// </summary>
  13. /// <value>The rule.</value>
  14. public ExtraRule Rule { get; set; }
  15. }
  16. }