mirror of
https://github.com/citra-emu/discord-bot.git
synced 2025-06-14 07:15:30 +00:00
14 lines
350 B
JavaScript
14 lines
350 B
JavaScript
class UserWarning {
|
|
constructor (id, username, warnedBy, warnedByUsername, priorWarnings, silent) {
|
|
this.id = id
|
|
this.username = username
|
|
this.date = new Date()
|
|
this.warnedBy = warnedBy
|
|
this.warnedByUsername = warnedByUsername
|
|
this.priorWarnings = priorWarnings
|
|
this.silent = silent
|
|
}
|
|
}
|
|
|
|
module.exports = UserWarning;
|