|
|
@@ -14,6 +14,7 @@ export class ContentItem {
|
|
|
public readonly systemLinks: ContentLink[];
|
|
|
public readonly repliable: boolean;
|
|
|
|
|
|
+ public readonly creator?: string;
|
|
|
public readonly title?: string;
|
|
|
public readonly text?: string;
|
|
|
public readonly price?: number;
|
|
|
@@ -31,6 +32,7 @@ export class ContentItem {
|
|
|
this.type = props.type;
|
|
|
this.title = props.title;
|
|
|
this.text = props.text;
|
|
|
+ this.creator = props.creator;
|
|
|
|
|
|
if (props.date) {
|
|
|
this.date = new Date(props.date);
|