import mongoose from "mongoose"; const propertySchema = mongoose.Schema({ propertyType: {type: String, required: true }, title: {type: String, required: true }, yearBuild: {type: String, required: true }, totalSqft: {type: String, required: true }, }); const PropertyModal = mongoose.model("property", propertySchema); export default PropertyModal;