yavsc/Yavsc.Server/Models/Access/RuleSet.cs

10 lines
299 B
C#

using System.Collections.Generic;
namespace Yavsc.Models.Access
{
7 years ago
public abstract class RuleSet <TResource,TRequirement>:List<Rule<TResource,TRequirement>> {
7 years ago
public abstract bool Allow(ApplicationDbContext context, string userId, TResource resource, TRequirement requirement);
}
}