src/shared/model/Attendance.ts
Properties |
| date |
date:
|
Type : string
|
| note |
note:
|
Type : string
|
| Optional |
| state |
state:
|
Type : AttendanceState
|
| Optional |
export enum AttendanceState {
PRESENT = 'PRESENT',
EXCUSED = 'EXCUSED',
UNEXCUSED = 'UNEXCUSED',
}
export interface IAttendance {
date: string;
note?: string;
state?: AttendanceState;
}
export interface IAttendanceDTO {
date: string;
note?: string;
state?: AttendanceState;
}