old-automod/bot/src/struct/DbUser.ts

12 lines
293 B
TypeScript
Raw Normal View History

2022-04-09 11:03:12 +00:00
// Stores global info about a particular user in the database
export default class DbUser {
// User ID
id: string;
// Blacklists the user from interacting with the bot
ignore?: boolean;
// Whether the user is globally marked as bad actor
globalBlacklist?: boolean;
}