mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
11 lines
302 B
C#
11 lines
302 B
C#
#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; }
|
|
} |