Move SinusBotService to backend
This commit is contained in:
4
backend/src/models/TableEntry.ts
Normal file
4
backend/src/models/TableEntry.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export interface TableEntry {
|
||||
name: string;
|
||||
onlineTime: string;
|
||||
}
|
||||
5
backend/src/models/TunakillLogin.ts
Normal file
5
backend/src/models/TunakillLogin.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export interface TunakillLogin {
|
||||
username: string;
|
||||
password: string;
|
||||
botId: string;
|
||||
}
|
||||
5
backend/src/models/TunakillUser.ts
Normal file
5
backend/src/models/TunakillUser.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export interface TunakillUser {
|
||||
name: string;
|
||||
time: number;
|
||||
uid: string;
|
||||
}
|
||||
Reference in New Issue
Block a user