devbug/app/models/v1/Invite.model.js
2019-07-24 12:05:27 -05:00

14 lines
307 B
JavaScript

/*
* Invite Model
* -------------------------------------------------------------
* Put some description here!
*/
const Invite = {
project_id: String,
by_user_id: String,
api_type: String,
created_on: Date,
used: { type: Boolean, default: false }
}
module.exports = exports = Invite