2020-02-27 17:21:45 +08:00
|
|
|
//
|
|
|
|
// MOP_initialize.h
|
|
|
|
// mop
|
|
|
|
//
|
|
|
|
// Created by 杨涛 on 2020/2/27.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "MOPBaseApi.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface MOP_initialize : MOPBaseApi
|
|
|
|
|
|
|
|
@property(nonatomic,copy)NSString* appkey;
|
|
|
|
@property(nonatomic,copy)NSString* secret;
|
|
|
|
@property(nonatomic,copy)NSString* apiServer;
|
|
|
|
@property(nonatomic,copy)NSString* apiPrefix;
|
2020-05-19 16:42:10 +08:00
|
|
|
@property(nonatomic,copy)NSString* cryptType;
|
2020-07-27 09:13:55 +08:00
|
|
|
@property (nonatomic, assign) BOOL disablePermission;
|
2020-02-27 17:21:45 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|