2020-01-06 12:10:40 +00:00
|
|
|
import { UUID } from '../classes/UUID';
|
|
|
|
|
import { ChatSourceType } from '../enums/ChatSourceType';
|
|
|
|
|
import { AssetType } from '../enums/AssetType';
|
2017-12-19 19:59:06 +00:00
|
|
|
|
|
|
|
|
export class InventoryOfferedEvent
|
|
|
|
|
{
|
|
|
|
|
from: UUID;
|
|
|
|
|
fromName: string;
|
|
|
|
|
requestID: UUID;
|
|
|
|
|
message: string;
|
|
|
|
|
source: ChatSourceType;
|
|
|
|
|
type: AssetType;
|
2018-10-10 10:36:12 +01:00
|
|
|
}
|