Files
node-metaverse/lib/events/InventoryOfferedEvent.ts
Casper Warden 572cd576de Fix lint issues
2018-10-10 10:36:12 +01:00

12 lines
232 B
TypeScript

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