This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/src/EllieBot/Modules/Permissions/PermissionCache.cs

11 lines
285 B
C#
Raw Normal View History

2024-06-26 10:20:28 +00:00
#nullable disable
2024-06-18 11:54:52 +00:00
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; }
}