12345678910111213141516171819202122232425262728 |
- #import <Foundation/Foundation.h>
- typedef NS_ENUM(NSInteger, APBCommandType) {
- COMMAND_QUIT = 100,
- COMMAND_CLOSE_UPLOADPAGE = 101,
- COMMAND_BIS_RETURN = 102,
- };
- @interface APBCommand : NSObject
- @property(nonatomic, assign, readonly)APBCommandType commandType;
- @property(nonatomic, strong, readonly)NSDictionary *params;
- - (instancetype)initWithCommandType:(APBCommandType)commandType
- withParams:(NSDictionary *)params;
- @end
|