mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:17:11 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			171 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			171 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { ValidateUUID } from 'src/validation';
 | 
						|
 | 
						|
export class UpdateStackParentDto {
 | 
						|
  @ValidateUUID()
 | 
						|
  oldParentId!: string;
 | 
						|
 | 
						|
  @ValidateUUID()
 | 
						|
  newParentId!: string;
 | 
						|
}
 |