Files
parr_api/PARR.API/RoleProvider/ISimpleRoleProvider.cs

8 lines
162 B
C#

namespace PARR.API.RoleProvider
{
public interface ISimpleRoleProvider
{
Task<ICollection<string>> GetUserRolesAsync(string ipClient);
}
}