cnf-backend-types
Version:
A package containing types for CNF Backend (and frontend?)
15 lines (13 loc) • 341 B
text/typescript
/* 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;
}