using System.Threading; using System.Threading.Tasks; namespace UtopiaCanteenSystem.Services; public interface IAuthService { Task LoginAsync(string username, string password, CancellationToken cancellationToken = default); }