#pragma warning disable CS1591 #pragma warning disable SA1600 using MediaBrowser.Model.Entities; namespace Emby.Naming.Video { public class ExtraResult { /// /// Gets or sets the type of the extra. /// /// The type of the extra. public ExtraType? ExtraType { get; set; } /// /// Gets or sets the rule. /// /// The rule. public ExtraRule Rule { get; set; } } }