mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-15 02:15:21 +00:00
10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
import { SpaceModelEntity } from '@app/common/modules/space-model';
|
|
|
|
export class PropogateDeleteSpaceModelCommand {
|
|
constructor(
|
|
public readonly param: {
|
|
spaceModel: SpaceModelEntity;
|
|
},
|
|
) {}
|
|
}
|