UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

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