add LRT main menu

This commit is contained in:
Jurgis Sakalauskas
2022-12-07 17:26:02 +02:00
parent 87a8d1ebf6
commit e92b5034c0
4 changed files with 45 additions and 1 deletions
+9
View File
@@ -7,6 +7,7 @@ export default class ApiResponse {
category: string;
play: string;
msgBoxOK: string;
nosort: boolean;
setTitle(title) {
this.category = title;
@@ -30,5 +31,13 @@ export default class ApiResponse {
addMessage(message) {
this.msgBoxOK = message;
return this;
}
setNoSort(value = true) {
this.nosort = value;
return this;
}
}