Refactor auth/user services

This commit is contained in:
Aaron Po
2026-02-12 19:28:40 -05:00
parent 94061c6d84
commit d942d92db5
18 changed files with 98 additions and 55 deletions

View File

@@ -0,0 +1,9 @@
using System.Threading.Tasks;
using Domain.Entities;
namespace Service.Auth.Auth;
public interface ILoginService
{
Task<UserAccount?> LoginAsync(string username, string password);
}