12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // KMURLConfigManager.swift
- // PDF Reader Pro
- //
- // Created by Niehaoyu on 2024/8/12.
- //
- import Foundation
- let APPMain_Link = NSLocalizedString("https://www.pdfreaderpro.com", comment: "")
- //跳转Store界面
- let Store_Link = NSLocalizedString("https://www.pdfreaderpro.com/store", comment: "")
- //PDF to office pack
- let PDFToOfficePacket_Link = NSLocalizedString("https://www.pdfreaderpro.com/store/upgrade?utm_source=appdmg&utm_medium=toptbr&utm_campaign=pdftooffice", comment: "")
- //跨平台
- let CrossPlatform_Link = NSLocalizedString("https://www.pdfreaderpro.com/store/pdf-pro-permanent-cross-platform-package?utm_source=appdmg&utm_medium=toptbr&utm_campaign=crossplatform", comment: "")
- //AI包
- let AIProduct_Link = NSLocalizedString("https://www.pdfreaderpro.com/store/aitools?utm_source=appdmg&utm_medium=allapp&utm_campaign=aitool", comment: "")
- //教育折扣
- let Store_Edu_Link = NSLocalizedString("https://www.pdfreaderpro.com/store?mode=edu&utm_source=appdmg&utm_medium=toptbr&utm_campaign=edu", comment: "")
- @objc extension Swift_oc_Tool {
- static let Store_Link_OC = Store_Link
- static let PDFToOfficePacket_Link_OC = PDFToOfficePacket_Link
- static let CrossPlatform_Link_OC = CrossPlatform_Link
- static let AIProduct_Link_OC = AIProduct_Link
- static let Store_Edu_Link_OC = Store_Edu_Link
-
-
-
- }
|