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

14 lines
328 B
TypeScript

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