11 lines
224 B
C#
11 lines
224 B
C#
namespace YavscLib
|
||
{
|
||
public interface ICircleAuthorized
|
||
{
|
||
long Id { get; set; }
|
||
string GetOwnerId ();
|
||
bool AuthorizeCircle(long circleId);
|
||
ICircleAuthorization [] GetACL();
|
||
|
||
}
|
||
} |