7 lines
No EOL
195 B
C#
7 lines
No EOL
195 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Robware.Auth {
|
|
public interface IAuthenticator {
|
|
Task<(AuthenticationResult Result, User User)> Authenticate(string username, string password);
|
|
}
|
|
} |