UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

13 lines (12 loc) 341 B
import { BaseEntity } from "./base.entity"; import { User } from "./user.entity"; export declare enum FreelancerSkillCategoryEnum { GOOD_TO_HAVE = 0, MUST_HAVE = 1 } export declare class FreelancerSkill extends BaseEntity { userId: number; user: User; skillName: string; skillCategory: FreelancerSkillCategoryEnum; }