mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Lot's of refactoring
This commit is contained in:
parent
c6865d9dcc
commit
263240c648
36 changed files with 732 additions and 660 deletions
11
src/Ombi.Core/Rule/Interfaces/ISpecificRule.cs
Normal file
11
src/Ombi.Core/Rule/Interfaces/ISpecificRule.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue