import { STUDENT_LEAVE_STATUS, STUDENT_LEAVE_TYPE } from '../constants/app'; import { IDefaultAttributes } from './commonInterface'; export interface IStudentLeaveRequestModelAttributes extends IDefaultAttributes { id: string; endDate: Date; userId: string; reason: string; startDate: Date; instituteId: string; fileStorageId: string; academicCalendarId: string; status: STUDENT_LEAVE_STATUS; leaveType: STUDENT_LEAVE_TYPE; }