3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 20:35:02 +00:00

Rename ModActions to Cases

This commit is contained in:
Dragory 2018-07-12 02:53:26 +03:00
parent 62dfc80a0e
commit e6f296381e
7 changed files with 154 additions and 152 deletions

View file

@ -1,6 +1,6 @@
import Model from "./Model";
export default class ModAction extends Model {
export default class Case extends Model {
public id: number;
public guild_id: string;
public case_number: number;
@ -8,7 +8,7 @@ export default class ModAction extends Model {
public user_name: string;
public mod_id: string;
public mod_name: string;
public action_type: number;
public type: number;
public audit_log_id: string;
public created_at: string;
}