mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 10:04:00 +00:00
14 lines
273 B
C#
14 lines
273 B
C#
using Domain.Entities;
|
|
|
|
namespace Service.Auth;
|
|
|
|
public record LoginServiceReturn(
|
|
UserAccount UserAccount,
|
|
string RefreshToken,
|
|
string AccessToken
|
|
);
|
|
public interface ILoginService
|
|
{
|
|
Task<LoginServiceReturn> LoginAsync(string username, string password);
|
|
}
|