femto-backend/Femto.Modules.Auth/Contracts/IAuthenticationService.cs
2025-05-14 23:53:00 +02:00

7 lines
No EOL
230 B
C#

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