Files
asan-service/server/models/Brand.js
T
Mr Swift 379929844a fix
2024-03-09 20:10:55 +03:30

14 lines
230 B
JavaScript

const mongoose = require('mongoose');
const brandSchema = new mongoose.Schema({
title: String,
link: {
type: String
},
description: String,
logo: String,
}
);
module.exports = mongoose.model('Brand', brandSchema);