propagate add

This commit is contained in:
hannathkadher
2024-12-19 09:12:26 +04:00
parent 23d3cd620c
commit a771fa8ee5
12 changed files with 291 additions and 14 deletions

View File

@ -0,0 +1,6 @@
import { ICommand } from '@nestjs/cqrs';
import { UpdatedSubspaceModelInterface } from '../interfaces';
export class PropogateSubspaceCommand implements ICommand {
constructor(public readonly param: UpdatedSubspaceModelInterface) {}
}