import { Model } from 'sequelize'; import { IAssignSubjectModelAttributes } from '../../interfaces/assignSubjectInterface'; import { TAssignSubjectModelCreationAttributes } from '../../types/assignSubjectType'; declare class AssignSubjectModel extends Model { id: string; userId: string; stdId: string; subjectId: string; lectureCount: number; instituteId: string; academicCalendarId: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly updatedAt: Date; readonly deletedAt?: Date; static associate(models: any): void; } export default AssignSubjectModel;