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

Last change on this file since f7c8acf 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
RevLine 
[3347c1b]1namespace iknow_api.DTOs
2{
3 public class VerifyRefreshTokenDto
4 {
[4b35197]5 public string token { get; set; } = string.Empty;
[3347c1b]6 }
[4b35197]7
[3347c1b]8 public class AuthResultDto
9 {
10 public string AccessToken { get; set; } = string.Empty;
11 public string? RefreshToken { get; set; }
[4b35197]12 public string Role { get; set; } = string.Empty;
[3347c1b]13 }
14}
Note: See TracBrowser for help on using the repository browser.