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

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