import { model, Schema } from "mongoose"; export interface IFileInfo { name: string; url: string; } const schema = new Schema( { name: { type: String }, url: { type: String }, }, { timestamps: true, toJSON: { versionKey: false } } ); export default model("FileInfo", schema);