Ajoute ou supprime des cercle aux posts

This commit is contained in:
Paul Schneider 2017-01-21 22:36:43 +01:00
commit d3e7942785
19 changed files with 199 additions and 67 deletions

View file

@ -0,0 +1,8 @@
namespace YavscLib
{
public interface ICircleAuthorization
{
long CircleId { get; set; }
}
}

View 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();
}
}