Files
the-biergarten-app/web/backend/Service/Service.Auth/ILoginService.cs
2026-04-27 18:47:39 -04:00

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);
}