const mongoose = require('mongoose') const ComplaintSchema = mongoose.Schema({ fullName: String, national: String, phoneNumber: String, deviceNumber: String, email: String, receptionCode: String, caption: String, callType: Boolean, read: { type: Boolean, default: false }, }) module.exports = mongoose.model('Complaint', ComplaintSchema)