mirror of
https://github.com/immich-app/immich.git
synced 2025-12-19 01:11:07 +03:00
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
|
|
import { UserEntity } from '@app/database/entities/user.entity';
|
||
|
|
|
||
|
|
export interface IUserDeletionJob {
|
||
|
|
/**
|
||
|
|
* The user entity that was saved in the database
|
||
|
|
*/
|
||
|
|
user: UserEntity;
|
||
|
|
}
|