| Total Complexity | 0 |
| Complexity/F | 0 |
| Lines of Code | 13 |
| Function Count | 0 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | 8 | import { ApiProperty } from '@nestjs/swagger'; |
|
| 2 | |||
| 3 | 8 | export class TokenRevocationResponseDto { |
|
| 4 | @ApiProperty() |
||
| 5 | 8 | success: boolean; |
|
| 6 | |||
| 7 | @ApiProperty() |
||
| 8 | 8 | message: string; |
|
| 9 | |||
| 10 | @ApiProperty() |
||
| 11 | 8 | revokedCount?: number; // Optional, if you want to include how many tokens were revoked |
|
| 12 | } |
||
| 13 |