mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
9 lines
159 B
C#
9 lines
159 B
C#
using Domain.Entities;
|
|
|
|
namespace Service.Auth;
|
|
|
|
public interface ILoginService
|
|
{
|
|
Task<LoginServiceReturn> LoginAsync(string username, string password);
|
|
}
|