survey-webapp/SurveyBackend/SurveyBackend.Core/Services/IAuthorizationService.cs
shept 7bff14a66e bub fix 🥺
created authorization service interface
2025-04-18 14:15:52 +05:00

9 lines
No EOL
224 B
C#

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