Protocol.h
345 Bytes
//
// Protocol.h
// BluePay
// define the protocol for callback
// Created by guojianmin on 16/1/9.
// Copyright © 2016年 alvin. All rights reserved.
//
#ifndef Protocol_h
#define Protocol_h
#import <Foundation/Foundation.h>
#endif /* Protocol_h */
@protocol Protocol <NSObject>
-(void) doTask:(NSMutableDictionary*)params;
@end