source: iknow-api/DTOs/RefreshTokenDTO.cs@ b8093a0

Last change on this file since b8093a0 was ce1f8d4, checked in by Stefan-Saveski <stefansaveski19@…>, 8 months ago

Added role to sign in.

  • Property mode set to 100644
File size: 352 bytes
RevLine 
[4e061d8]1namespace iknow_api.DTOs
2{
3 public class VerifyRefreshTokenDto
4 {
[ce1f8d4]5 public string token { get; set; } = string.Empty;
[4e061d8]6 }
[ce1f8d4]7
[4e061d8]8 public class AuthResultDto
9 {
10 public string AccessToken { get; set; } = string.Empty;
11 public string? RefreshToken { get; set; }
[ce1f8d4]12 public string Role { get; set; } = string.Empty;
[4e061d8]13 }
14}
Note: See TracBrowser for help on using the repository browser.