Files
backend/src/space-model/commands/propogate-subspace-update-command.ts
hannathkadher 6a89a17ce9 disable space
2024-12-30 10:06:33 +04:00

13 lines
383 B
TypeScript

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;
},
) {}
}