mirror of
https://github.com/samsonjs/immich.git
synced 2026-06-28 05:29:35 +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;
|
|
}
|