aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppSonja/frontend/front/src/app/Student.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppSonja/frontend/front/src/app/Student.ts')
-rw-r--r--sandbox/testAppSonja/frontend/front/src/app/Student.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/sandbox/testAppSonja/frontend/front/src/app/Student.ts b/sandbox/testAppSonja/frontend/front/src/app/Student.ts
new file mode 100644
index 00000000..6cc9842f
--- /dev/null
+++ b/sandbox/testAppSonja/frontend/front/src/app/Student.ts
@@ -0,0 +1,20 @@
+/*export interface IStudent {
+ id: number;
+ firstName: string;
+ lastName: string;
+ regNum: number;
+ address: string;
+ phoneNum: string;
+ gpa: number;
+ }
+ */
+
+ export class Student {
+ id!: number;
+ firstName!: string;
+ lastName!: string;
+ regNum!: string;
+ address!: string;
+ phoneNum!: string;
+ gpa!: number;
+ } \ No newline at end of file