source: iknow-api/DTOs/RefreshTokenDTO.cs

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

Added role to sign in.

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