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

Add repository+model for mutes

This commit is contained in:
Dragory 2018-07-07 17:03:13 +03:00
parent 55215dc382
commit 2ac8984792
3 changed files with 103 additions and 0 deletions

8
src/models/Mute.ts Normal file
View file

@ -0,0 +1,8 @@
import Model from "./Model";
export default class Mute extends Model {
public guild_id: string;
public user_id: string;
public created_at: string;
public expires_at: string;
}