Files
node-metaverse/lib/events/GroupChatEvent.ts
2025-01-17 23:53:31 +00:00

10 lines
193 B
TypeScript

import type { UUID } from '../classes/UUID';
export class GroupChatEvent
{
public groupID: UUID;
public from: UUID;
public fromName: string;
public message: string;
}