aboutsummaryrefslogtreecommitdiff
path: root/backend/api/api/Services/IAuthService.cs
blob: 9a1092083bbd6e6509189e08309d31d414ea8337 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using api.Models.Users;

namespace api.Services
{
    public interface IAuthService
    {
        string Login(AuthRequest user);
        string Register(RegisterRequest user);
        string RenewToken(string token);
        public string GuestToken();
    }
}