import { PAYOUT_STATUS } from "../constants"; export interface IUserLoanModelAttributes { id: string; userId: string; instituteId: string; academicCalendarId: string; additionalPayoutTypeId: string; amount?: number; paidAmount?: number; description?: string; status?: PAYOUT_STATUS; createdBy?: string; updatedBy?: string; deletedBy?: string; createdAt?: Date; updatedAt?: Date; deletedAt?: Date; }