source: iknow-api/DTOs/RefreshTokenDTO.cs@ 4e061d8

Last change on this file since 4e061d8 was 4e061d8, checked in by imbrsk <boris696boris@…>, 11 months ago

Implement refresh token functionality with associated services and repositories

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