import { IDefaultAttributes } from './commonInterface'; export interface ISubjectHasFeeModelAttributes extends IDefaultAttributes { id: string; instituteId: string; subjectId: string; fee: number; academicCalendarId?: string; batchId?: string; batchType?: string; oldId?: string; }