UNPKG

scheunemann-interfaces

Version:
13 lines (12 loc) 367 B
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; }