Files
node-metaverse/lib/events/GroupChatEvent.ts

10 lines
193 B
TypeScript
Raw Normal View History

import type { UUID } from '../classes/UUID';
export class GroupChatEvent
{
public groupID: UUID;
public from: UUID;
public fromName: string;
public message: string;
2018-10-10 10:36:12 +01:00
}