@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
15 lines (14 loc) • 398 B
TypeScript
import { BaseEntity } from "./base.entity";
import { Interview } from "./interview.entity";
export declare enum InterviewQuestionType {
AI = "AI",
CUSTOM = "CUSTOM"
}
export declare class InterviewQuestion extends BaseEntity {
interviewId: number;
interview: Interview;
question: string;
concepts: string[];
questionType: InterviewQuestionType;
isActive: boolean;
}