UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

13 lines (12 loc) 315 B
import { BaseEntity } from "./base.entity"; import { User } from "./user.entity"; export declare class FreelancerProject extends BaseEntity { userId: number; user: User; projectName: string; startDate: Date; endDate: Date; clientName: string; gitLink: string; description: string; }