7 lines
No EOL
230 B
C#
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);
|
|
} |