1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 19:34:34 +00:00
Files
server/src/model/Client.ts
2021-11-03 15:56:58 +05:00

15 lines
249 B
TypeScript

import mongoose from 'mongoose'
const clientSchema = new mongoose.Schema({
clientId: {
type: String,
required: true
},
clientSecret: {
type: String,
required: true
}
})
export default mongoose.model('Client', clientSchema)