scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
14 lines (13 loc) • 391 B
TypeScript
import { IAddress } from '../interfaces';
import { CoordsEntity } from './coords.entity';
export declare class AddressEntity implements IAddress {
city: string;
complement: string | null;
coords: CoordsEntity;
neighborhood: string;
postalCode: string;
state: string;
streetName: string;
streetNumber: string;
constructor(data?: Partial<AddressEntity>);
}