forked from EllieBotDevs/elliebot
11 lines
288 B
C#
11 lines
288 B
C#
|
#nullable disable
|
|||
|
using EllieBot.Db.Models;
|
|||
|
|
|||
|
namespace EllieBot.Modules.Permissions.Common;
|
|||
|
|
|||
|
public class PermissionCache
|
|||
|
{
|
|||
|
public string PermRole { get; set; }
|
|||
|
public bool Verbose { get; set; } = true;
|
|||
|
public PermissionsCollection<Permissionv2> Permissions { get; set; }
|
|||
|
}
|