import { ICommand } from '@nestjs/cqrs'; import { SpaceModelEntity } from '@app/common/modules/space-model'; import { ModifyspaceModelPayload } from '../interfaces'; export class PropogateUpdateSpaceModelCommand implements ICommand { constructor( public readonly param: { spaceModel: SpaceModelEntity; modifiedSpaceModels: ModifyspaceModelPayload; }, ) {} }