| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //
- // LNConfigResponse.swift
- // Lanu
- //
- // Created by OneeChan on 2025/12/25.
- //
- import Foundation
- import AutoCodable
- @AutoCodable
- class LNCurrenyExchangeConstsVO: Decodable {
- var IDR: Double?
- var goldCoin: Double?
- var bean: Double?
- var diamond: Double?
- }
- @AutoCodable
- class LNCommonAreaConstsVO: Decodable {
- var code: String = ""
- var name: String = ""
- }
- @AutoCodable
- class LNLanguageConstsVO: Decodable {
- var code: String = ""
- var name: String = ""
- }
- @AutoCodable
- class LNAppVersionConfigVO: Decodable {
- var ios: String = ""
- }
- @AutoCodable
- class LNConfigResponse: Decodable {
- var commonCoinExchangeConsts: [LNCurrenyExchangeConstsVO] = []
- var commonAreaConsts: [LNCommonAreaConstsVO] = []
- var commonLanguageConsts: [LNLanguageConstsVO] = []
- var appReviewSpecialVersionConfig: LNAppVersionConfigVO?
-
- init() { }
- }
- @AutoCodable
- class LNCountryCodeVO: Decodable {
- var name: String = ""
- var icon: String = ""
- var num: String = ""
- var code: String = ""
- }
- @AutoCodable
- class LNCountryCodeListResponse: Decodable {
- var list: [LNCountryCodeVO] = []
- }
- @AutoCodable
- class LNForceUpdateConfigResponse: Decodable {
- var platform: Int = 0
- var minVersion: String = ""
- var tip: String = ""
- }
|