ExtraResult.cs 496 B

123456789101112131415161718192021
  1. #pragma warning disable CS1591
  2. using MediaBrowser.Model.Entities;
  3. namespace Emby.Naming.Video
  4. {
  5. public class ExtraResult
  6. {
  7. /// <summary>
  8. /// Gets or sets the type of the extra.
  9. /// </summary>
  10. /// <value>The type of the extra.</value>
  11. public ExtraType? ExtraType { get; set; }
  12. /// <summary>
  13. /// Gets or sets the rule.
  14. /// </summary>
  15. /// <value>The rule.</value>
  16. public ExtraRule Rule { get; set; }
  17. }
  18. }