Add endpoint to rename unit by UUID

This commit is contained in:
faris Aljohari
2024-04-14 10:47:54 +03:00
parent 8dca50b24d
commit bf60303ddc
4 changed files with 95 additions and 1 deletions

View File

@ -19,3 +19,8 @@ export interface UnitParentInterface {
type: string;
parent?: UnitParentInterface;
}
export interface RenameUnitByUuidInterface {
uuid: string;
name: string;
type: string;
}