12 lines
251 B
C#
12 lines
251 B
C#
namespace Yavsc.Abstract.Identity.Security
|
||
{
|
||
public interface ICircleAuthorized
|
||
{
|
||
long Id { get; set; }
|
||
string AuthorId { get; }
|
||
bool AuthorizeCircle(long circleId);
|
||
ICircleAuthorization [] GetACL();
|
||
|
||
}
|
||
}
|