import { APP_TYPE, MAINTENANCE_MODE, MAINTENANCE_MODULE_NAME, MAINTENANCE_TYPE } from '../constants'; import { IDefaultAttributes } from './commonInterface'; export interface IMaintenanceModelAttributes extends IDefaultAttributes { id: string; isMaintenance?: boolean; maintenanceTitle: string; maintenanceDescription: string; maintenanceType?: MAINTENANCE_TYPE; maintenanceMode: MAINTENANCE_MODE; moduleName?: MAINTENANCE_MODULE_NAME; instituteId?: string; entityId?: string; appType: APP_TYPE; isRemove?: string; }