BotSharp/src/Infrastructure/BotSharp.Abstraction/Users/Models/UserAuthorization.cs
2024-11-14 17:33:26 -06:00

9 lines
246 B
C#

namespace BotSharp.Abstraction.Users.Models;
public class UserAuthorization
{
public bool IsAdmin { get; set; }
public IEnumerable<string> Permissions { get; set; } = [];
public IEnumerable<string> AgentActions { get; set; } = [];
}