using MediaBrowser.Model.Entities;
namespace Emby.Naming.Video
{
///
/// Holder object for passing results from ExtraResolver.
///
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; }
}
}