EvalueTonSavoir/server/models/authUserAssociation.js

14 lines
349 B
JavaScript
Raw Normal View History

2024-09-30 23:05:00 -04:00
const db = require('../config/db.js')
const { ObjectId } = require('mongodb');
class AuthUserAssociation {
constructor(authProviderId, authId, userId) {
this._id = new ObjectId();
this.authProvider_id = authProviderId;
this.auth_id = authId;
this.user_id = userId;
}
}
module.exports = new AuthUserAssociation;