profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

main default branch 429 files Expires Sep 13, 2026, 9:06 AM
JWTResponse.cs 273 bytes
1 namespace App.DTO.v1.Identity;
2
3 public class JWTResponse
4 {
5 public string Jwt { get; set; } = default!;
6 public string RefreshToken { get; set; } = default!;
7 public string FirstName { get; set; } = default!;
8 public string LastName { get; set; } = default!;
9 }
10