using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using TIAMWebApp.Shared.Application.Models; namespace TIAMWebApp.Shared.Application.Interfaces { public interface IUserDataService { public User? User { get; set; } public Dictionary userRoleTypes { get; set; } public Task IsLoggedInAsync(); public Task AuthorizeUserAsync(int userType); public Task> GetUserRolesAsync(User user); } }