import { Schema, model } from "mongoose"; import { IContract } from "./Abstraction/IContract"; const ContractSchema = new Schema( { content: { type: String, required: true }, }, { timestamps: true, toJSON: { virtuals: true, versionKey: false }, id: false }, ); const ContractModel = model("Contract", ContractSchema); export { ContractModel };