@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
32 lines (31 loc) • 776 B
TypeScript
declare enum JobLocationEnumDto {
ONSITE = "ONSITE",
REMOTE = "REMOTE",
BOTH = "BOTH"
}
declare enum TypeOfEmploymentEnumDto {
FULLTIME = "FULLTIME",
PARTTIME = "PARTTIME",
BOTH = "BOTH"
}
export declare class AdminCreateJobInformationDto {
jobRole: string;
note?: string;
skills: string[];
openings: number;
location: JobLocationEnumDto;
typeOfEmployment: TypeOfEmploymentEnumDto;
onboardingTat: string;
candidateCommunicationSkills: string;
currency: string;
expectedSalaryFrom: number;
expectedSalaryTo: number;
tentativeStartDate: string;
tentativeEndDate: string;
additionalComment?: string;
countryId: number;
stateId: number;
cityId: number;
clientId: number;
}
export {};