mirror of
https://github.com/snltty/linker.git
synced 2025-10-10 03:20:08 +08:00
16 lines
359 B
C#
16 lines
359 B
C#
namespace linker.messenger.access
|
|
{
|
|
public interface IAccessStore
|
|
{
|
|
public AccessValue Access { get; }
|
|
|
|
public Action OnChanged { get; set; }
|
|
|
|
public void SetAccess(AccessUpdateInfo info);
|
|
|
|
public AccessValue AssignAccess(AccessValue access);
|
|
|
|
public bool HasAccess(AccessValue clientManagerAccess);
|
|
}
|
|
}
|