source:
iknow-api/DTOs/RefreshTokenDTO.cs@
ce1f8d4
| Last change on this file since ce1f8d4 was ce1f8d4, checked in by , 8 months ago | |
|---|---|
|
|
| File size: 352 bytes | |
| Rev | Line | |
|---|---|---|
| [4e061d8] | 1 | namespace iknow_api.DTOs |
| 2 | { | |
| 3 | public class VerifyRefreshTokenDto | |
| 4 | { | |
| [ce1f8d4] | 5 | public string token { get; set; } = string.Empty; |
| [4e061d8] | 6 | } |
| [ce1f8d4] | 7 | |
| [4e061d8] | 8 | public class AuthResultDto |
| 9 | { | |
| 10 | public string AccessToken { get; set; } = string.Empty; | |
| 11 | public string? RefreshToken { get; set; } | |
| [ce1f8d4] | 12 | public string Role { get; set; } = string.Empty; |
| [4e061d8] | 13 | } |
| 14 | } |
Note:
See TracBrowser
for help on using the repository browser.
