More minor restructuring and cleanup. Most modules and submodules should be properly grouped now

This commit is contained in:
Kwoth
2022-01-02 04:31:54 +01:00
parent 25f249ab5e
commit 6322e0e077
8 changed files with 12 additions and 14 deletions

View File

@@ -0,0 +1,11 @@
#nullable disable
using NadekoBot.Services.Database.Models;
namespace NadekoBot.Modules.Permissions.Common;
public class PermissionCache
{
public string PermRole { get; set; }
public bool Verbose { get; set; } = true;
public PermissionsCollection<Permissionv2> Permissions { get; set; }
}