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

12 lines
221 B
C#

namespace Yavsc
{
public interface ICircleAuthorized
{
long Id { get; set; }
string GetOwnerId ();
bool AuthorizeCircle(long circleId);
ICircleAuthorization [] GetACL();
}
}