aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppSonja/frontend/front/src/app/Student.ts
blob: 6cc9842fc87c0f4f80a54eaa6b6fe7ca1c862996 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
  }