using System.Collections.Generic;
namespace Emby.Naming.Video
{
public class ExtraResult
{
///
/// Gets or sets the type of the extra.
///
/// The type of the extra.
public string ExtraType { get; set; }
///
/// Gets or sets the rule.
///
/// The rule.
public ExtraRule Rule { get; set; }
}
}