propagate

This commit is contained in:
hannathkadher
2025-03-10 15:13:04 +04:00
parent f6d47d0e39
commit aa609266c7
2 changed files with 53 additions and 2 deletions

View File

@ -1,9 +1,18 @@
import { SubspaceModelEntity } from '@app/common/modules/space-model';
import {
SpaceModelProductAllocationEntity,
SubspaceModelEntity,
} from '@app/common/modules/space-model';
import { ModifyTagModelDto } from '../dtos';
import { ModifyAction } from '@app/common/constants/modify-action.enum';
import { NewTagEntity } from '@app/common/modules/tag';
export interface ISingleSubspaceModel {
subspaceModel: SubspaceModelEntity;
action: ModifyAction;
tags: ModifyTagModelDto[];
movedToNewSpaceAllocation?: SpaceModelProductAllocationEntity[];
movedToAlreadyExistingSpaceAllocation?: {
allocation: SpaceModelProductAllocationEntity;
tags: NewTagEntity[];
}[];
}