export interface QuestionCategory { id: string; name: string; questions: string[]; sort: number; description: string | undefined; } export interface Question { id: string; name: string; NA: boolean; description: string | undefined; usage: number; answer: string | undefined; categoryId: string; sort: number; } export interface Questionnaire { id: string; active: boolean; name: string; description: string | undefined; questions: string[]; lastEdited: string | undefined; created: number; createdBy: string | undefined; }