mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-20 13:35:54 +00:00
6 lines
136 B
TypeScript
6 lines
136 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class TrashResponseDto {
|
|
@ApiProperty({ type: 'integer' })
|
|
count!: number;
|
|
}
|