using Yavsc.Interfaces; namespace Yavsc.Abstract.Identity.Security { public interface ICircleAuthorized : ITaggable { string AuthorId { get; } bool AuthorizeCircle(long circleId); ICircleAuthorization [] GetACL(); } }