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

8 lines
149 B
Objective-C

#import "HTTPResponse.h"
@interface DELETEResponse : NSObject <HTTPResponse> {
NSInteger _status;
}
- (id) initWithFilePath:(NSString*)path;
@end