import { ContatoDTO } from './contatoDTO'; import { EnderecoDTO } from './enderecoDTO'; export class PessoaDTO { idPessoa?: number; contato?: ContatoDTO; endereco?: EnderecoDTO; nome?: string; sobrenome?: string; dataNascimento?: string; rg?: string; cpf?: string; urlImagem?: string; urlImagemAvatar?: string; apelido?: string; ativo?: boolean; }