source: iknow-api/DTOs/RefreshTokenDTO.cs@ 33c69d6

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

added remaining methods to refreshtoken feature

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