using Domain.Entities; namespace Service.Auth; public interface ILoginService { Task LoginAsync(string username, string password); }