export interface EniroStandardData {
    company_name: string; // nazwa firmy
    street: string; // ulica
    house_num: string; // numer domu
    appartment_num: string; // numer mieszkania
    district: string; // dzielnica
    post_office_code: string; // kod pocztowy 
    city: string; // miasto 
    city_id: number; // miasto 
    post_office: string; // poczta
    post_office_id: number; // poczta 
    additional_info: string; // dodatkowe informace
    county_id: number; // powiat
    county: string;
    commune_id: number; // gmina,
    commune: string;
    voivodeship_id: number; // województwo,
    voivodeship: string;
    country_id: number; // kraj
    country: string;
    elid: number;
    lastUpdate: number;
};
