- My list Audio books on add remove fav, only calling audiobooks api and reloading in background

- 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
This commit is contained in:
2024-08-12 19:58:58 +05:30
parent 3eccad3149
commit d17fe416ae
69 changed files with 708 additions and 137 deletions

View File

@@ -10,8 +10,10 @@ import Foundation
struct GuestDataDM: Codable {
var username: String?
var fullname: String?
var newGuest: Bool?
enum CodingKeys: String, CodingKey {
case username, fullname
case newGuest = "new_guest"
}
}