| 123456789101112131415161718 |
- //
- // ConstantVC.swift
- // WisdomCampusApk
- //
- // Created by 方楚豪 on 2022/1/20.
- //
- import UIKit
- class ConstantVC {
- public static var HAS_IGNORE = "hasIgnore"
- public static var HAS_NEW_VERSION = "hasNewVersion"
- public static var APP_VERSION = "appVersion"
- public static var APP_STORE_VERSION = "appStoreVersion"
- public static var OFF_LINE_PUSH_URL = "offLinePushInfoUrl"
- }
|