cdts/xdts-ios 3/TreeHole/Code/Features/Config/AppConfig.h

32 lines
809 B
C
Raw Normal View History

2023-07-27 09:20:00 +08:00
//
// AppConfig.h
// Youth
//
// Created by mambaxie on 2022/2/11.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface AppConfig : NSObject
@property (nonatomic, copy) NSString *service_protocol;
@property (nonatomic, copy) NSString *privacy_protocol;
@property (nonatomic, copy) NSString *phone_register_protocol;
@property (nonatomic, copy) NSString *about_us;
@property (nonatomic, copy) NSString *youth_story;
@property (nonatomic, copy) NSString *how_rest;
@property (nonatomic, assign) BOOL privacy_is_update;
@property (nonatomic, assign) BOOL service_is_update;
@property (nonatomic, copy) NSString *wx_gong_zhong_hao;
//其它地方赋值
@property (nonatomic, assign) BOOL is_wallet_notice;
@property (nonatomic, copy) NSString *wallet_des;
@end
NS_ASSUME_NONNULL_END