Pending course, rest ready for launch
This commit is contained in:
@@ -1,12 +1,20 @@
|
||||
import type { CourseLevel } from "./course";
|
||||
|
||||
export type CaseTerm = {
|
||||
term: string;
|
||||
definitionEs: string;
|
||||
};
|
||||
|
||||
export type CaseStudy = {
|
||||
slug: string;
|
||||
title: string;
|
||||
citation: string;
|
||||
year: number;
|
||||
summary: string;
|
||||
summaryEs: string;
|
||||
legalOutcomeEs: string;
|
||||
level: CourseLevel;
|
||||
topic: string;
|
||||
keyTerms: string[];
|
||||
category: string;
|
||||
difficulty: string;
|
||||
keyTerms: CaseTerm[];
|
||||
quizPrompt: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user