mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-26 12:24:54 +00:00
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import { SpaceEntity } from '@app/common/modules/space';
|
|
|
|
export class DisableSpaceCommand {
|
|
constructor(
|
|
public readonly param: {
|
|
spaceUuid: string;
|
|
orphanSpace: SpaceEntity;
|
|
},
|
|
) {}
|
|
}
|