blob: 618aaf7d27a25f515bf4c0e8a3950b4babe7efc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// SDLOnEncodedSyncPData.h
//
#import "SDLRPCNotification.h"
@interface SDLOnEncodedSyncPData : SDLRPCNotification {
}
- (instancetype)init;
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
@property (strong) NSMutableArray *data;
@property (strong) NSString *URL;
@property (strong) NSNumber *Timeout;
@end
|