mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
* refactor: user repository * refactor: user module * refactor: move database into infra * refactor(cli): use user core * chore: import path * chore: tests
7 lines
205 B
TypeScript
7 lines
205 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
import { Express } from 'express';
|
|
|
|
export class CreateProfileImageDto {
|
|
@ApiProperty({ type: 'string', format: 'binary' })
|
|
file!: Express.Multer.File;
|
|
}
|