- My list Games on add remove fav, only calling Games api and reloading in background - My list Karaoke on add remove fav, only calling Karaoke api and reloading in background -Finalised clicks count for every module
24 lines
469 B
Swift
24 lines
469 B
Swift
//
|
|
// GVar.swift
|
|
// WOKA
|
|
//
|
|
// Created by Bilal on 26/04/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension K{
|
|
|
|
struct GVar{
|
|
// static var localized = K.LocalizedEnum.english
|
|
static var reloadMyList = false
|
|
static var topView = TopViewEnum.theme1
|
|
|
|
static var myListSoftReload = false
|
|
|
|
static var reloadMyListAudioBooks = false
|
|
static var reloadKaraoke = false
|
|
static var reloadGames = false
|
|
}
|
|
}
|