Tutorial Working
This commit is contained in:
15
src/interface/AccountTutorialStatus.ts
Normal file
15
src/interface/AccountTutorialStatus.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
export enum TutorialStatus {
|
||||
COMPLETED = "COMPLETED",
|
||||
NOT_COMPLETED = "NOT_COMPLETED"
|
||||
}
|
||||
|
||||
|
||||
export interface AccountTutorialStatus {
|
||||
accountTutorialStatusId?: string;
|
||||
accountId: string;
|
||||
gamesTutorialStatus: TutorialStatus;
|
||||
gameTutorialStatus: TutorialStatus;
|
||||
raidGroupsTutorialStatus: TutorialStatus;
|
||||
raidGroupTutorialStatus: TutorialStatus;
|
||||
instanceTutorialStatus: TutorialStatus;
|
||||
}
|
||||
Reference in New Issue
Block a user