import { Document } from 'mongoose'; import { IDefaultAttributes } from './commonInterface'; export interface IPastYearRecordTopperModelAttributes extends IDefaultAttributes, Document { id: string; fullName: string; img?: string; percentage: number; rank: number; pastYearRecordId: string; subjectList?: ISubjectList[]; } export interface ISubjectList { name: string; marks: number; }