forked from jappel/leistungsbilanz-ts
Persist project locations
This commit is contained in:
parent
1cf26a932e
commit
ac465a1cc0
23 changed files with 1313 additions and 101 deletions
|
|
@ -106,6 +106,11 @@ export interface FloorDto {
|
|||
sortOrder: number;
|
||||
}
|
||||
|
||||
export interface ProjectFloorCommandResultDto
|
||||
extends ProjectCommandResultDto {
|
||||
floor: FloorDto;
|
||||
}
|
||||
|
||||
export interface RoomDto {
|
||||
id: string;
|
||||
projectId: string;
|
||||
|
|
@ -146,6 +151,11 @@ export interface ProjectDeviceDto {
|
|||
voltageV: number | null;
|
||||
}
|
||||
|
||||
export interface ProjectRoomCommandResultDto
|
||||
extends ProjectCommandResultDto {
|
||||
room: RoomDto;
|
||||
}
|
||||
|
||||
export interface ProjectDeviceCommandResultDto
|
||||
extends ProjectCommandResultDto {
|
||||
projectDevice: ProjectDeviceDto;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue