scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
13 lines (12 loc) • 367 B
TypeScript
import { IAddress } from '../../general';
import { EDocType } from '../../general/enums/doc-type.enum';
import { IClientAplication } from './i-client-aplication';
export interface IClient {
name: string;
address: IAddress | null;
doc: string | null;
aplications: IClientAplication[];
email: string | null;
docType: EDocType;
id: string;
}