@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
13 lines (12 loc) • 315 B
TypeScript
import { BaseEntity } from "./base.entity";
import { Job } from "./job.entity";
export declare enum JobSkillCategoryEnum {
GOOD_TO_HAVE = 0,
MUST_HAVE = 1
}
export declare class JobSkill extends BaseEntity {
jobId: number;
job: Job;
skillName: string;
skillCategory: JobSkillCategoryEnum;
}