| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // 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] = []
- }
|