mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-06-16 21:51:17 +00:00
8d3401f962
Networks, Inc.
18 lines
319 B
Objective-C
18 lines
319 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>
|
|
|
|
- (void)populateWithData:(NSData *)data;
|
|
- (NSArray*) getAppList;
|
|
- (BOOL) isStatusOk;
|
|
|
|
@end
|