Ajoute ou supprime des cercle aux posts
This commit is contained in:
parent
e35c0d23c2
commit
d3e7942785
19 changed files with 199 additions and 67 deletions
8
YavscLib/ICircleAuthorization.cs
Normal file
8
YavscLib/ICircleAuthorization.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
namespace YavscLib
|
||||
{
|
||||
|
||||
public interface ICircleAuthorization
|
||||
{
|
||||
long CircleId { get; set; }
|
||||
}
|
||||
}
|
||||
15
YavscLib/ICircleAuthorized.cs
Normal file
15
YavscLib/ICircleAuthorized.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
|
||||
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace YavscLib
|
||||
{
|
||||
public interface ICircleAuthorized
|
||||
{
|
||||
long Id { get; set; }
|
||||
string GetOwnerId ();
|
||||
bool AuthorizeCircle(long circleId);
|
||||
ICircleAuthorization [] GetACL();
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue