Files
node-metaverse/lib/events/InventoryOfferedEvent.ts
2018-10-06 17:16:51 +01:00

11 lines
230 B
TypeScript

import {AssetType, ChatSourceType, UUID} from '..';
export class InventoryOfferedEvent
{
from: UUID;
fromName: string;
requestID: UUID;
message: string;
source: ChatSourceType;
type: AssetType;
}