import { IDefaultAttributes } from './commonInterface'; export interface IRmsVendorAttributes extends IDefaultAttributes { id: string; instituteId: string; externalVendorId?: string | null; vendorCode: string; vendorName: string; contactPerson?: string | null; mobile?: string | null; email?: string | null; gstNumber?: string | null; panNumber?: string | null; address?: string | null; rating?: number | null; status: string; }