|
Last change
on this file since 3347c1b was 3347c1b, 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 | |
|---|
| 1 | namespace 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.