@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
20 lines (19 loc) • 439 B
TypeScript
export declare class ProjectDto {
uuid?: string;
projectName: string;
startDate: string;
endDate: string;
clientName?: string;
gitLink?: string;
description?: string;
}
export declare class CaseStudyDto {
uuid?: string;
projectName: string;
caseStudyLink: string;
description?: string;
}
export declare class FreelancerProjectDto {
projects: ProjectDto[];
casestudies: CaseStudyDto[];
}