35 lines
986 B
Objective-C
35 lines
986 B
Objective-C
//
|
|
// HBCommonKeys.m
|
|
// QinJiuTV
|
|
//
|
|
// Created by 秦九 on 2024/4/30.
|
|
//
|
|
|
|
#import "HBCommonKeys.h"
|
|
|
|
/// 网络请求地址
|
|
NSString *const HBBaseUrlString = @"https://test-api.peonytv.com";
|
|
|
|
NSString *const HBIdentifierForVendorKey = @"HBIdentifierForVendorKey";
|
|
|
|
NSString *const HBNetWorkingTokenKey = @"HBNetWorkingTokenKey";
|
|
|
|
NSString *const HBCustomerLoginSuccessKey = @"HBCustomerLoginSuccessKey";
|
|
|
|
NSString *const HBCustomerIdKey = @"HBCustomerIdKey";
|
|
|
|
NSString *const HBSearchHistoryKey = @"HBSearchHistoryKey";
|
|
|
|
NSString *const HBPlayerPuaseKey = @"HBPlayerPuaseKey";
|
|
|
|
|
|
NSString *const HBNotificationOpenActionIdentifier = @"HBNotificationOpenActionIdentifier";
|
|
NSString *const HBNotificationOpenCategoryIdentifier = @"HBNotificationOpenCategoryIdentifier";
|
|
|
|
|
|
NSString *const HBNotFirstStartKey = @"HBNotFirstStartKey";
|
|
|
|
NSString *const HBUpdateUserInfoNotification = @"HBUpdateUserInfoNotification";
|
|
NSString *const HBFirstStartNotification = @"HBFirstStartNotification";
|
|
|