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

9 lines
143 B
TypeScript
Raw Normal View History

2018-10-06 17:16:51 +01:00
import {UUID} from '..';
export class GroupChatEvent
{
groupID: UUID;
from: UUID;
fromName: string;
message: string;
}