MPOAuthURLResponse.h 440 B

1234567891011121314151617181920
  1. //
  2. // MPOAuthURLResponse.h
  3. // MPOAuthConnection
  4. //
  5. // Created by Karl Adam on 08.12.05.
  6. // Copyright 2008 matrixPointer. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface MPOAuthURLResponse : NSObject {
  10. NSURLResponse *_urlResponse;
  11. NSDictionary *_oauthParameters;
  12. }
  13. @property (nonatomic, readonly, retain) NSURLResponse *urlResponse;
  14. @property (nonatomic, readonly, retain) NSDictionary *oauthParameters;
  15. @end