Files
the-biergarten-app/src/Core/Service/Service.Auth/Auth/ILoginService.cs
2026-02-12 19:28:40 -05:00

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