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

11 lines
250 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-02-08 20:06:24 +00:00
string OwnerId { get; }
bool AuthorizeCircle(long circleId);
2017-05-27 16:22:58 +02:00
ICircleAuthorization [] GetACL();
}
2017-05-27 16:22:58 +02:00
}