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

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