propagate add

This commit is contained in:
hannathkadher
2024-12-19 09:12:26 +04:00
parent 23d3cd620c
commit a771fa8ee5
12 changed files with 291 additions and 14 deletions

View File

@ -0,0 +1 @@
export * from './update-subspace.interface'

View File

@ -0,0 +1,19 @@
import {
SubspaceModelEntity,
SubspaceProductItemModelEntity,
SubspaceProductModelEntity,
} from '@app/common/modules/space-model';
export interface AddSubspaceModelInterface {
subspaceModel: SubspaceModelEntity;
productModels: ProductModelInterface[];
}
export interface ProductModelInterface {
productModel: SubspaceProductModelEntity;
productItemModels: SubspaceProductItemModelEntity[];
}
export interface UpdatedSubspaceModelInterface {
new?: AddSubspaceModelInterface[];
}