No repository description.
namespace SplitApp.Modules.Users.Api.Dto.v1;
public class JWTResponse
{
public string Jwt { get; set; } = default!;
public string RefreshToken { get; set; } = default!;
public string FirstName { get; set; } = default!;
public string LastName { get; set; } = default!;
}