bub fix 🥺

created authorization service interface
This commit is contained in:
Вячеслав 2025-04-18 14:15:52 +05:00
parent 41ff1555f8
commit 7bff14a66e
3 changed files with 11 additions and 2 deletions

View file

@ -0,0 +1,9 @@
using SurveyBackend.Core.Models;
namespace SurveyBackend.Core.Services;
public interface IAuthorizationService
{
public Task<string?> LogInUser(string email, string password);
public Task RegisterUser(User user);
}