WorkTracker/Services/Auth/IAuthService.cs

8 lines
253 B
C#
Raw Normal View History

namespace WorkTracker.Services.Auth;
public interface IAuthService
{
Task EnsureSeedUserAsync(CancellationToken cancellationToken);
Task<AuthUser?> ValidateCredentialsAsync(string email, string password, CancellationToken cancellationToken);
}