Front: Add 'Lesson' Model

This commit is contained in:
Arthi-chaud
2022-08-13 09:56:29 +02:00
parent b531ff4c36
commit 42ae446f85
3 changed files with 47 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
interface Model {
id: number;
slug: string;
}
export default Model;