mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-31 10:15: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;
|
|
}
|