Files
immich/server/apps/immich/src/api-v1/asset/response-dto/check-duplicate-asset-response.dto.ts
Alex 9a6dfacf9b Refactor web to use OpenAPI SDK (#326)
* Refactor main index page

* Refactor admin page

* Refactor Auth endpoint

* Refactor directory to prep for monorepo

* Fixed refactoring path

* Resolved file path in vite

* Refactor photo index page

* Refactor thumbnail

* Fixed test

* Refactor Video Viewer component

* Refactor download file

* Refactor navigation bar

* Refactor upload file check

* Simplify Upload Asset signature

* PR feedback
2022-07-10 21:41:45 -05:00

7 lines
134 B
TypeScript

export class CheckDuplicateAssetResponseDto {
constructor(isExist: boolean) {
this.isExist = isExist;
}
isExist: boolean;
}