mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-27 06:32:59 +00:00
18 lines
317 B
Objective-C
18 lines
317 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;
|
|
- (NSSet*) getAppList;
|
|
- (BOOL) isStatusOk;
|
|
|
|
@end
|