WorkTracker/Services/Auth/IAuthService.cs
2026-03-17 13:53:33 +01:00

8 lines
No EOL
253 B
C#

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