export class LogBody { username: string; type: string; message = ""; constructor (username: string, type: string, message?: string) { this.username = username; this.type = type; this.message = message; } };