Newer
Older
Warehouse / src / Infrastructure / Authentication / Core / Services / IUserService.cs
@Derek Comartin Derek Comartin on 22 Aug 2023 260 bytes Init
using MyWarehouse.Infrastructure.Authentication.Core.Model;

namespace MyWarehouse.Infrastructure.Authentication.Core.Services;

public interface IUserService
{
    Task<(MySignInResult result, SignInData? data)> SignIn(string username, string password);
}