Fix login

This commit is contained in:
Jonathan Bourdon
2024-06-20 13:46:53 -04:00
parent 390bf0b72a
commit b17d2f2366
2 changed files with 19 additions and 19 deletions

View File

@@ -24,7 +24,7 @@ public class Users : EndpointGroupBase
return await sender.Send(query);
}
private static async Task<string> Login(ISender sender, LoginCommand command)
private static async Task<LoginResponse> Login(ISender sender, LoginCommand command)
{
return await sender.Send(command);
}