hermes-client/Chat/Groups/Permissions/IGroupPermissionManager.cs

11 lines
322 B
C#
Raw Normal View History

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);
void Clear();
bool Remove(string path);
}
}