import { IDefaultAttributes } from './commonInterface'; import { COMMAN_STATUS } from '../constants/app'; export interface IRmsStorageRackAttributes extends IDefaultAttributes { id: string; instituteId: string; rackName: string; locationId: string; description?: string | null; status: COMMAN_STATUS; } export interface IRmsStorageSlotAttributes extends IDefaultAttributes { id: string; instituteId: string; rackId: string; slotName: string; status: COMMAN_STATUS; }