Files
2019-01-25 17:01:52 +08:00

9 lines
297 B
Objective-C

#import "HTTPResponse.h"
@interface PUTResponse : NSObject <HTTPResponse> {
NSInteger _status;
}
- (id) initWithFilePath:(NSString*)path headers:(NSDictionary*)headers bodyData:(NSData*)body;
- (id) initWithFilePath:(NSString*)path headers:(NSDictionary*)headers bodyFile:(NSString*)body;
@end