Skip to content

Commit

Permalink
Merge pull request #43 from sparcs-kaist/migration@shape/review
Browse files Browse the repository at this point in the history
Migrate to `review.tsx`
  • Loading branch information
sboh1214 authored Mar 11, 2024
2 parents 9a4fad2 + 4ab9a93 commit d25c315
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/shapes/model/review/review.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import nestedCourse from '../subject/nestedCourse';
import nestedLecture from '../subject/nestedLecture';

export default interface review {
id: number;
course: nestedCourse;
lecture: nestedLecture;
content: string;
like: number;
is_deleted: number;
grade: number;
load: number;
speech: number;
userspecific_is_liked: boolean;
}

0 comments on commit d25c315

Please sign in to comment.