using System.Threading; namespace WorkTracker.Services.Auth; public interface IMongoAuthService { Task EnsureSeedUserAsync(CancellationToken cancellationToken); Task ValidateCredentialsAsync(string email, string password, CancellationToken cancellationToken); }