UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

14 lines (13 loc) 278 B
declare enum CategoryEmumDto { BUSINESS = "BUSINESS", FREELANCER = "FREELANCER" } export declare class CreateLeadDto { name: string; email: string; mobileCode: string; mobile: string; description?: string; category: CategoryEmumDto; } export {};