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

11 lines
251 B
C#
Raw Normal View History

2018-07-16 02:36:44 +02:00
namespace Yavsc.Abstract.Identity.Security
{
public interface ICircleAuthorized
{
long Id { get; set; }
2025-06-29 19:53:56 +01:00
string AuthorId { get; }
bool AuthorizeCircle(long circleId);
2017-05-27 16:22:58 +02:00
ICircleAuthorization [] GetACL();
}
2017-05-27 16:22:58 +02:00
}