- worked on homelive tv observers - addd fav remove fav for audio books will now locally update my list instead reloading - addd fav remove fav for karaoke will now locally update my list instead reloading - addd fav remove fav for games will now locally update my list instead reloading
20 lines
346 B
Swift
20 lines
346 B
Swift
//
|
|
// MyListDataTemp.swift
|
|
// WOKA
|
|
//
|
|
// Created by Bilal on 02/08/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class MyListDataTemp{
|
|
|
|
static let shareInstance = MyListDataTemp()
|
|
|
|
var favListingData : FavouriteListingDM.ResultData?
|
|
|
|
var webSeriesHindi = [FavouriteListingDM.ResultData.ShowDatum]()
|
|
|
|
var isDatafetched = false
|
|
}
|