EvalueTonSavoir/server/models/userAuthAssociation.js
MathieuSevignyLavallee b1e26d7895 Chaos management
2024-09-30 23:05:00 -04:00

13 lines
No EOL
301 B
JavaScript

const db = require('../config/db.js')
const { ObjectId } = require('mongodb');
class AuthUserAssoc {
constructor(authProviderId, authId, userId) {
this._id = new ObjectId();
this.authProvider_id = authProviderId;
this.auth_id = authId;
this.user_id = userId;
}
}