Added auth/authenticate endpoint
This commit is contained in:
10
Birdmap/Services/Interfaces/IAuthService.cs
Normal file
10
Birdmap/Services/Interfaces/IAuthService.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using Birdmap.Models;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Birdmap.Services.Interfaces
|
||||
{
|
||||
public interface IAuthService
|
||||
{
|
||||
Task<User> AuthenticateUserAsync(string username, string password);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user