cecon-interfaces
Version:
Interfaces de Projetos Cecon
14 lines (13 loc) • 443 B
TypeScript
import { EDocType, IAddress } from '../../general';
import { IClient } from '../interfaces';
import { IClientAplication } from '../interfaces/i-client-aplication';
export declare class ClientEntity implements IClient {
address: IAddress | null;
aplications: IClientAplication[];
doc: string | null;
docType: EDocType;
email: string | null;
id: string;
name: string;
constructor(data?: Partial<ClientEntity>);
}