mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-27 19:54:54 +00:00
added subspace delete
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user