mirror of
https://github.com/janderedev/automod.git
synced 2025-11-14 23:34:58 +00:00
15 lines
275 B
TypeScript
15 lines
275 B
TypeScript
class ScannedUser {
|
|
id: string;
|
|
server: string;
|
|
lastLog: number;
|
|
approved: boolean = false;
|
|
lastLoggedProfile?: {
|
|
username: string;
|
|
nickname?: string;
|
|
status?: string;
|
|
profile?: string;
|
|
}
|
|
}
|
|
|
|
export default ScannedUser;
|