Files
the-biergarten-app/src/Core/Service/Service.Auth/ILoginService.cs

9 lines
159 B
C#

using Domain.Entities;
namespace Service.Auth;
public interface ILoginService
{
Task<LoginServiceReturn> LoginAsync(string username, string password);
}