import { IDefaultAttributes } from './commonInterface'; import { COMMAN_STATUS, LOCATION_TYPE } from '../constants/app'; export interface IRmsLocationAttributes extends IDefaultAttributes { id: string; instituteId: string; parentLocationId?: string | null; locationCode: string; locationName: string; locationType: LOCATION_TYPE; capacity?: number | null; status: COMMAN_STATUS; }