mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-02 10:35:54 +00:00
9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
import { ValidateUUID } from 'src/validation';
|
|
|
|
export class UpdateStackParentDto {
|
|
@ValidateUUID()
|
|
oldParentId!: string;
|
|
|
|
@ValidateUUID()
|
|
newParentId!: string;
|
|
}
|