UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

9 lines (8 loc) 250 B
import { BaseEntity } from "./base.entity"; import { Interview } from "./interview.entity"; export declare class InterviewQuestion extends BaseEntity { interviewId: number; interview: Interview; question: string; isActive: boolean; }