import { ACADEMIC_CALENDARS_STATUS, COMMAN_STATUS } from '../constants/app'; import { IDefaultAttributes } from './commonInterface'; export interface IEntityWiseCalendarModelAttributes extends IDefaultAttributes { id: string; entityId: string; status: ACADEMIC_CALENDARS_STATUS; startDate: Date; endDate: Date; startYear: number; endYear: number; isActive: COMMAN_STATUS; }