mirror of
https://github.com/duckietm/Nitro-Cool-UI.git
synced 2025-06-21 22:36:58 +00:00
21 lines
477 B
TypeScript
21 lines
477 B
TypeScript
import { CatalogEvent } from '.';
|
|
import { FurnitureItem } from '../../api';
|
|
|
|
export class CatalogPostMarketplaceOfferEvent extends CatalogEvent
|
|
{
|
|
public static readonly POST_MARKETPLACE = 'CE_POST_MARKETPLACE';
|
|
|
|
private _item: FurnitureItem;
|
|
|
|
constructor(item: FurnitureItem)
|
|
{
|
|
super(CatalogPostMarketplaceOfferEvent.POST_MARKETPLACE);
|
|
this._item = item;
|
|
}
|
|
|
|
public get item(): FurnitureItem
|
|
{
|
|
return this._item;
|
|
}
|
|
}
|