birbmap/Birdmap/Services/Interfaces/IAuthService.cs

11 lines
220 B
C#
Raw Normal View History

2020-10-21 17:04:54 +02:00
using Birdmap.Models;
using System.Threading.Tasks;
namespace Birdmap.Services.Interfaces
{
public interface IAuthService
{
Task<User> AuthenticateUserAsync(string username, string password);
}
}