|
|
@@ -13,6 +13,8 @@ export class ContentItem {
|
|
|
public readonly systemLinks: ContentLink[];
|
|
|
public readonly repliable: boolean;
|
|
|
|
|
|
+ public readonly title?: string;
|
|
|
+ public readonly text?: string;
|
|
|
public readonly price?: number;
|
|
|
public readonly priceFormatted?: string;
|
|
|
public readonly fromTarget?: string;
|
|
|
@@ -25,6 +27,8 @@ export class ContentItem {
|
|
|
this.data = props;
|
|
|
this.hash = hash;
|
|
|
this.type = props.type;
|
|
|
+ this.title = props.title;
|
|
|
+ this.text = props.text;
|
|
|
|
|
|
if (props.myTags) {
|
|
|
this.myTagsWithoutAll = props.myTags.filter(x => x !== 'all');
|