mirror of
https://github.com/immich-app/immich.git
synced 2025-12-19 17:23:21 +03:00
* 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
7 lines
134 B
TypeScript
7 lines
134 B
TypeScript
export class CheckDuplicateAssetResponseDto {
|
|
constructor(isExist: boolean) {
|
|
this.isExist = isExist;
|
|
}
|
|
isExist: boolean;
|
|
}
|