estatesfunding/ef-api/models/property.js

15 lines
373 B
JavaScript

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;