namespace Indotalent.ConfigBackEnd.Interfaces; public interface ICurrentUserService { string? TenantId { get; set; } string? UserId { get; set; } string? UserName { get; set; } string? Email { get; set; } string? FullName { get; set; } Task IsInRoleAsync(string role); Task HasPermissionAsync(string permission); }