mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
Refactor auth/user services
This commit is contained in:
9
src/Core/Service/Service.Auth/Auth/ILoginService.cs
Normal file
9
src/Core/Service/Service.Auth/Auth/ILoginService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System.Threading.Tasks;
|
||||
using Domain.Entities;
|
||||
|
||||
namespace Service.Auth.Auth;
|
||||
|
||||
public interface ILoginService
|
||||
{
|
||||
Task<UserAccount?> LoginAsync(string username, string password);
|
||||
}
|
||||
Reference in New Issue
Block a user