using System.Threading.Tasks; using Ombi.Core.Models.Requests; namespace Ombi.Core.Rule.Interfaces { public interface ISpecificRule where T : new() { Task Execute(T obj); SpecificRules Rule { get; } } }