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

10 lines
145 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;
2018-10-10 10:36:12 +01:00
}