const mongoose = require('mongoose') const FeeSchema = mongoose.Schema({ title: String, amount: Number, createdAt: { type: Date, default: Date.now }, }) module.exports = mongoose.model('Fee', FeeSchema)