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