birbmap/Birdmap/Services/Interfaces/IAuthService.cs

11 lines
220 B
C#

using Birdmap.Models;
using System.Threading.Tasks;
namespace Birdmap.Services.Interfaces
{
public interface IAuthService
{
Task<User> AuthenticateUserAsync(string username, string password);
}
}