This commit is contained in:
dank074 2021-11-22 22:56:14 -06:00
parent f84f5b1a98
commit 0e8e291455
2 changed files with 4 additions and 3 deletions

View File

@ -44,7 +44,7 @@ export class CampaignCalendarData
data.campaignDays = this._campaignDays; data.campaignDays = this._campaignDays;
data.campaignImage = this._campaignImage; data.campaignImage = this._campaignImage;
data.campaignData = this._campaignName; data.campaignName = this._campaignName;
data.currentDay = this._currentDay; data.currentDay = this._currentDay;
data.missedDays = this._missedDays; data.missedDays = this._missedDays;
data.openedDays = this._openedDays; data.openedDays = this._openedDays;
@ -52,12 +52,12 @@ export class CampaignCalendarData
return data; return data;
} }
public get campaignData(): string public get campaignName(): string
{ {
return this._campaignName; return this._campaignName;
} }
public set campaignData(name: string) public set campaignName(name: string)
{ {
this._campaignName = name; this._campaignName = name;
} }

View File

@ -4,6 +4,7 @@ export * from './avatar';
export * from './bots'; export * from './bots';
export * from './callforhelp'; export * from './callforhelp';
export * from './camera'; export * from './camera';
export * from './campaign';
export * from './catalog'; export * from './catalog';
export * from './client'; export * from './client';
export * from './competition'; export * from './competition';