added subspace delete

This commit is contained in:
hannathkadher
2024-12-19 10:23:08 +04:00
parent 35888a1fce
commit 9063c65e68
8 changed files with 135 additions and 9 deletions

View File

@ -14,6 +14,17 @@ export interface ProductModelInterface {
productItemModels: SubspaceProductItemModelEntity[];
}
export interface UpdatedSubspaceModelInterface {
export interface IModifySubspaceModelInterface {
new?: AddSubspaceModelInterface[];
update?: IUpdateSubspaceModelInterface[];
delete?: IDeletedSubsaceModelInterface[];
}
export interface IUpdateSubspaceModelInterface {
subspaceName?: string;
uuid: string;
}
export interface IDeletedSubsaceModelInterface {
uuid: string;
}