mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-13 16:52:56 -07:00
11 lines
No EOL
250 B
C#
11 lines
No EOL
250 B
C#
using System.Threading.Tasks;
|
|
using Ombi.Core.Models.Requests;
|
|
|
|
namespace Ombi.Core.Rule.Interfaces
|
|
{
|
|
public interface ISpecificRule<T> where T : new()
|
|
{
|
|
Task<RuleResult> Execute(T obj);
|
|
SpecificRules Rule { get; }
|
|
}
|
|
} |