forked from eklipse2k8/CocoaRestClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCRCRequest.h
More file actions
26 lines (22 loc) · 807 Bytes
/
Copy pathCRCRequest.h
File metadata and controls
26 lines (22 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// CRCSaveRequest.h
// CocoaRestClient
//
// Created by Adam Venturella on 7/10/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "CocoaRestClientAppDelegate.h"
@interface CRCRequest : NSObject <NSCoding>
@property BOOL rawRequestInput;
@property(nonatomic, copy) NSString * name;
@property(nonatomic, copy) NSString * url;
@property(nonatomic, copy) NSString * method;
@property(nonatomic, copy) NSString * requestText;
@property(nonatomic, copy) NSString * username;
@property(nonatomic, copy) NSString * password;
@property(nonatomic, copy) NSArray * headers;
@property(nonatomic, copy) NSArray * files;
@property(nonatomic, copy) NSArray * params;
+ (CRCRequest *)requestWithApplication:(CocoaRestClientAppDelegate *)application;
@end