15 lines
261 B
C#
15 lines
261 B
C#
|
||
|
||
using System.Collections.Generic;
|
||
|
||
namespace YavscLib
|
||
{
|
||
public interface ICircleAuthorized
|
||
{
|
||
long Id { get; set; }
|
||
string GetOwnerId ();
|
||
bool AuthorizeCircle(long circleId);
|
||
ICircleAuthorization [] GetACL();
|
||
|
||
}
|
||
} |