13 lines
448 B
C#
13 lines
448 B
C#
namespace TwitchChatTTS.Chat.Groups.Permissions
|
|
{
|
|
public interface IGroupPermissionManager
|
|
{
|
|
void Set(string path, bool? allow);
|
|
bool? CheckIfAllowed(string path);
|
|
bool? CheckIfAllowed(IEnumerable<string> groups, string path);
|
|
bool? CheckIfDirectAllowed(string path);
|
|
bool? CheckIfDirectAllowed(IEnumerable<string> groups, string path);
|
|
void Clear();
|
|
bool Remove(string path);
|
|
}
|
|
} |