File

src/shared/model/Attendance.ts

Index

Properties

Properties

date
date: string
Type : string
note
note: string
Type : string
Optional
state
state: AttendanceState
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;
}

results matching ""

    No results matching ""