11 lines
230 B
TypeScript
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;
|
|
} |