mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-27 14:45:34 +00:00
21 lines
491 B
Objective-C
21 lines
491 B
Objective-C
//
|
|
// HttpRequest.h
|
|
// Limelight
|
|
//
|
|
// Created by Diego Waxemberg on 2/1/15.
|
|
// Copyright (c) 2015 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "HttpResponse.h"
|
|
|
|
@interface HttpRequest : NSObject
|
|
|
|
@property (nonatomic) id<Response> response;
|
|
@property (nonatomic) NSURLRequest* request;
|
|
|
|
+ (instancetype) requestForResponse:(id<Response>)response withUrlRequest:(NSURLRequest*)req;
|
|
+ (instancetype) requestWithUrlRequest:(NSURLRequest*)req;
|
|
|
|
@end
|