forked from jappel/leistungsbilanz-ts
34 lines
799 B
TypeScript
34 lines
799 B
TypeScript
export interface Consumer {
|
|
id: string;
|
|
projectId: string;
|
|
distributionBoardId?: string;
|
|
circuitListId?: string;
|
|
projectDeviceId?: string;
|
|
isLinkedToDevice?: boolean;
|
|
roomId?: string;
|
|
roomNumber?: string;
|
|
roomName?: string;
|
|
floorId?: string;
|
|
floorName?: string;
|
|
circuitNumber?: string;
|
|
description?: string;
|
|
name: string;
|
|
category?: string;
|
|
deviceType?: string;
|
|
phaseType?: string;
|
|
tradeOrCostGroup?: string;
|
|
group?: string;
|
|
protectionType?: string;
|
|
protectionRatedCurrent?: number;
|
|
protectionCharacteristic?: string;
|
|
cableType?: string;
|
|
cableCrossSection?: string;
|
|
comment?: string;
|
|
quantity: number;
|
|
installedPowerPerUnitKw: number;
|
|
demandFactor: number;
|
|
voltageV?: number;
|
|
phaseCount?: 1 | 3;
|
|
powerFactor?: number;
|
|
note?: string;
|
|
}
|