UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

14 lines (13 loc) 321 B
import { BaseEntity } from "./base.entity"; export declare enum CategoryEmum { BUSINESS = "BUSINESS", FREELANCER = "FREELANCER" } export declare class Lead extends BaseEntity { name: string; mobileCode: string; mobile: string; email: string; description: string; category: CategoryEmum; }