mirror of
https://github.com/immich-app/immich.git
synced 2025-12-27 09:14:55 +03:00
7 lines
136 B
TypeScript
7 lines
136 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class TrashResponseDto {
|
|
@ApiProperty({ type: 'integer' })
|
|
count!: number;
|
|
}
|