mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
* refactor: user repository * refactor: user module * refactor: move database into infra * refactor(cli): use user core * chore: import path * chore: tests
12 lines
295 B
TypeScript
12 lines
295 B
TypeScript
export class CreateProfileImageResponseDto {
|
|
userId!: string;
|
|
profileImagePath!: string;
|
|
}
|
|
|
|
export function mapCreateProfileImageResponse(userId: string, profileImagePath: string): CreateProfileImageResponseDto {
|
|
return {
|
|
userId: userId,
|
|
profileImagePath: profileImagePath,
|
|
};
|
|
}
|