Files
Bilal 15681d2402 - made a custom captcha module, as per apple law child cannot directly share a link
- Added share functionality for kids
- improved timing for add to cart and remove cart, cart icon text update
- remove login from first app start, now when language is selected guest login api ill be called.
- added google ads to audiobooks and games
- added google ads to more section
- updated fm url
2024-09-20 19:04:23 +05:30

42 lines
989 B
Swift

//
// AppUpdateDM.swift
// WOKA
//
// Created by MacBook Pro on 20/08/24.
//
import Foundation
// MARK: - AppUpdateDM
struct AppUpdateDM: Codable {
let the0: The0?
let msg: String?
let url: String?
enum CodingKeys: String, CodingKey {
case the0 = "0"
case msg, url
}
// MARK: - The0
struct The0: Codable {
let id: Int?
let versionID, releaseDate: String?
let oldVersion: String?
let newVersion, forceUpdateVersion: String?
let forceUpdate: Int?
let releaseNotes: String?
enum CodingKeys: String, CodingKey {
case id
case versionID = "version_id"
case releaseDate = "release_date"
case oldVersion = "old_version"
case newVersion = "new_version"
case forceUpdateVersion = "force_update_version"
case forceUpdate = "force_update"
case releaseNotes = "release_notes"
}
}
}