UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

10 lines (9 loc) 259 B
import { BaseEntity } from "./base.entity"; import { User } from "./user.entity"; export declare class FreelancerCaseStudy extends BaseEntity { userId: number; user: User; projectName: string; caseStudyLink: string; description: string; }