21 lines
393 B
C
21 lines
393 B
C
|
//
|
||
|
// 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;
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|