Refactor authentication payloads and services for registration and login processes

This commit is contained in:
Aaron Po
2026-02-16 00:02:07 -05:00
parent f4a76a365b
commit 86fa272c84
7 changed files with 77 additions and 29 deletions

View File

@@ -4,5 +4,5 @@ namespace Service.Auth;
public interface ILoginService
{
Task<AuthServiceReturn> LoginAsync(string username, string password);
Task<LoginServiceReturn> LoginAsync(string username, string password);
}