mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-26 08:14:55 +00:00
13 lines
383 B
TypeScript
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;
|
|
},
|
|
) {}
|
|
}
|