15 lines
267 B
C#
15 lines
267 B
C#
using Yavsc.Interfaces;
|
||
|
||
namespace Yavsc.Abstract.Identity.Security
|
||
{
|
||
public interface ICircleAuthorized : ITaggable<long>
|
||
{
|
||
|
||
string AuthorId { get; }
|
||
|
||
bool AuthorizeCircle(long circleId);
|
||
|
||
ICircleAuthorization [] GetACL();
|
||
|
||
}
|
||
}
|