Command-fix/models/UserBan.js

13 lines
314 B
JavaScript
Raw Normal View History

2016-12-07 22:52:37 -05:00
class UserBan {
constructor(id, username, warnedBy, warnedByUsername, priorWarnings) {
this.id = id;
this.username = username;
this.date = new Date();
this.warnedBy = warnedBy;
this.warnedByUsername = warnedByUsername;
this.priorWarnings = priorWarnings;
}
}
module.exports = UserBan;