refactoring
This commit is contained in:
parent
0085795902
commit
fafa1a5c5f
21 changed files with 5 additions and 5 deletions
8
YavscLib/Identity/Security/ICircleAuthorization.cs
Normal file
8
YavscLib/Identity/Security/ICircleAuthorization.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
namespace YavscLib
|
||||
{
|
||||
|
||||
public interface ICircleAuthorization
|
||||
{
|
||||
long CircleId { get; set; }
|
||||
}
|
||||
}
|
||||
11
YavscLib/Identity/Security/ICircleAuthorized.cs
Normal file
11
YavscLib/Identity/Security/ICircleAuthorized.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
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