ExtraResult.cs 461 B

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