cecon-interfaces
Version:
Interfaces de Projetos Cecon
20 lines (19 loc) • 460 B
TypeScript
import { IAddress } from '../../general';
import { EDocType } from '../../general/enums';
export interface IDeveloper {
active: boolean;
address: IAddress | null;
createdAt: Date;
doc: string;
docType: EDocType;
email: string | null;
id: string;
slug: string;
imageUrl: string | null;
internationalCode: string;
name: string;
phoneNumber: string;
sandbox: boolean;
tags: string[];
updatedAt: Date;
}