UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

19 lines (18 loc) 407 B
import { BaseEntity } from "./base.entity"; export declare enum QuestionFor { CLIENT = "CLIENT", FREELANCER = "FREELANCER" } export declare class Question extends BaseEntity { question: string; hint: string; slug: string; questionFor: QuestionFor; type: string; options: { label: string; hint: string; value: string; }[]; isActive: boolean; }