mirror of
https://github.com/yuzu-emu/Command-fix
synced 2024-11-24 23:08:09 +00:00
12 lines
314 B
JavaScript
12 lines
314 B
JavaScript
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;
|