/* eslint-disable semi */
import Comune from './comune.model';
import Recapito from './recapito.model';
export default interface Indirizzo extends Recapito {
    via: string;
    cap: string;
    extra: string;
    created_at: Date;
    updated_at: Date;
    comune_id: number;
    recapito_id: number;

    comune?: Comune;
}
