|
Last change
on this file since 691f152 was c155364, checked in by imbrsk <boris696boris@…>, 11 months ago |
|
added remaining methods to refreshtoken feature
|
-
Property mode
set to
100644
|
|
File size:
393 bytes
|
| Rev | Line | |
|---|
| [3347c1b] | 1 | using iknow_api.DTOs;
|
|---|
| 2 | using iknow_api.Models;
|
|---|
| 3 | namespace iknow_api.Repositories{
|
|---|
| 4 | public interface IRefreshTokenRepository
|
|---|
| 5 | {
|
|---|
| 6 | Task AddTokenAsync(RefreshToken refreshToken);
|
|---|
| 7 | Task<bool> VerifyTokenAsync(VerifyRefreshTokenDto refreshTokenDto);
|
|---|
| 8 | Task<bool> DeleteTokenAsync(string refreshTokenDto);
|
|---|
| [c155364] | 9 | Task<int?> GetUserId(string refreshTokenDto);
|
|---|
| [3347c1b] | 10 |
|
|---|
| 11 | }
|
|---|
| 12 | } |
|---|
Note:
See
TracBrowser
for help on using the repository browser.