moonlight-ios/Limelight/Network/AppListResponse.h
2015-07-10 22:19:25 -07:00

20 lines
342 B
Objective-C

//
// AppListResponse.h
// Moonlight
//
// Created by Diego Waxemberg on 2/1/15.
// Copyright (c) 2015 Moonlight Stream. All rights reserved.
//
#import "HttpResponse.h"
@interface AppListResponse : NSObject <Response>
@property Host* host;
- (void)populateWithData:(NSData *)data;
- (NSArray*) getAppList;
- (BOOL) isStatusOk;
@end