mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-07-07 11:07:19 +00:00
Add softban command. Mod action fixes and tweaks.
This commit is contained in:
parent
e984fe89e5
commit
c5f139df24
7 changed files with 139 additions and 40 deletions
10
src/models/CaseNote.ts
Normal file
10
src/models/CaseNote.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
import Model from "./Model";
|
||||
|
||||
export default class CaseNote extends Model {
|
||||
public id: number;
|
||||
public case_id: number;
|
||||
public mod_id: string;
|
||||
public mod_name: string;
|
||||
public body: string;
|
||||
public created_at: string;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue