/** * Evidenční jednotka (eno_ciselnik_evidencni_jednotka), resolved through the building's eno_majetek * record. Shared by the building detail and the building search so a client can reuse one type for * both; null on either endpoint means the building has no majetek record. */ export interface IEnoRegistrationUnit { id: number | null; kod: string | null; nazev: string | null; typ: string | null; }