mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 02:39:03 +00:00
10 lines
188 B
C#
10 lines
188 B
C#
using System.Threading.Tasks;
|
|
using Domain.Entities;
|
|
|
|
namespace Service.Auth.Auth;
|
|
|
|
public interface ILoginService
|
|
{
|
|
Task<UserAccount?> LoginAsync(string username, string password);
|
|
}
|