song-of-the-day/song_of_the_day/Auth/IAuthenticationService.cs

4 lines
100 B
C#

public interface IAuthenticationService
{
bool Authenticate(string userName, string password);
}