UNPKG

@golemio/energetics

Version:
19 lines (18 loc) 753 B
import { IOrganizationDto } from "./IOrganizationDto"; import { IOrganizationBuildingDto } from "./IOrganizationBuildingDto"; import { IOrganizationResponsibleUserDto } from "./IOrganizationResponsibleUserDto"; export interface IOrganizationDetailDto extends IOrganizationDto { label: string | null; address_street: string | null; address_house_number: string | null; address_city: string | null; address_country: string | null; address_mail: string | null; address_phone: string | null; address_web_address: string | null; category: string | null; created_by_id: number | null; grafana_url: string | null; responsible_user: IOrganizationResponsibleUserDto[]; buildings: IOrganizationBuildingDto[]; }