mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 16:45:40 +01:00
13 lines
322 B
JavaScript
13 lines
322 B
JavaScript
class UserWarning {
|
|
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 = UserWarning;
|