source: iknow-api/DTOs/RefreshTokenDTO.cs@ 1d32d5c

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

added remaining methods to refreshtoken feature

  • Property mode set to 100644
File size: 278 bytes
RevLine 
[4e061d8]1namespace iknow_api.DTOs
2{
3 public class VerifyRefreshTokenDto
4 {
[1e58098]5 public string token { get; set; }
[4e061d8]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.