insatller fee

This commit is contained in:
morteza-mortezai
2025-11-26 09:37:16 +03:30
parent 1a98067f1a
commit 7b501107cf
11 changed files with 224 additions and 63 deletions
+10
View File
@@ -0,0 +1,10 @@
const mongoose = require('mongoose')
const FeeSchema = mongoose.Schema({
title: String,
amount: Number,
createdAt: { type: Date, default: Date.now },
})
module.exports = mongoose.model('Fee', FeeSchema)