femto-backend/Femto.Modules.Authentication/Contracts/IAuthenticationService.cs

7 lines
No EOL
240 B
C#

namespace Femto.Modules.Authentication.Contracts;
public interface IAuthenticationService
{
public Task<UserInfo?> Register(string username, string password);
public Task<UserInfo?> Authenticate(string username, string password);
}