yavsc/src/Yavsc.Abstract/Identity/Security/ICircleAuthorized.cs

12 lines
250 B
C#

7 years ago
namespace Yavsc.Abstract.Identity.Security
{
public interface ICircleAuthorized
{
long Id { get; set; }
10 months ago
string OwnerId { get; }
bool AuthorizeCircle(long circleId);
ICircleAuthorization [] GetACL();
}
}