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

11 lines
221 B
C#
Raw Normal View History

2017-05-27 16:22:58 +02:00
namespace Yavsc
{
public interface ICircleAuthorized
{
long Id { get; set; }
string GetOwnerId ();
bool AuthorizeCircle(long circleId);
2017-05-27 16:22:58 +02:00
ICircleAuthorization [] GetACL();
}
2017-05-27 16:22:58 +02:00
}