api.auth/src/Robware.Auth/IAuthenticator.cs
2020-04-12 13:50:39 +01:00

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);
}
}