@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
33 lines (32 loc) • 805 B
TypeScript
export declare enum NatureOfWorkDto {
FULLTIME = "FULLTIME",
PARTTIME = "PARTTIME",
BOTH = "BOTH"
}
export declare enum ModeOfWorkDto {
ONSITE = "ONSITE",
REMOTE = "REMOTE",
BOTH = "BOTH"
}
export declare class UpdateFreelancerProfileDto {
firstName: string;
lastName: string;
designation: string;
experience: string;
email: string;
mobileCode: string;
mobile: string;
countryId: number;
currency: string;
expectedHourlyCompensation: string;
natureOfWork: NatureOfWorkDto;
modeOfWork: ModeOfWorkDto;
portfolioLink?: string;
address?: string;
about?: string;
linkedinProfileLink?: string;
kaggleProfileLink?: string;
githubProfileLink?: string;
stackOverflowProfileLink?: string;
resumeUrl?: string;
}