Files
node-metaverse/lib/events/GroupNoticeEvent.ts
hintswen 7c60ecfc27 Group notice event
Added group notice event for Issue #15

Includes a little tidy-up by Casper
2019-12-29 18:01:18 +00:00

11 lines
159 B
TypeScript

import {UUID} from '..';
export class GroupNoticeEvent
{
groupID: UUID;
from: UUID;
fromName: string;
subject: string;
message: string;
}