aboutsummaryrefslogtreecommitdiff
path: root/backend/api/api/Services/IAuthService.cs
blob: 4ed9a7615542d1c85e8d2944632720553ef8553f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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();
        public void RegisterGuest();
    }
}