commit | author | age
|
d1f6ab
|
1 |
// |
d0b2df
|
2 |
// WAUpdateInfo.h |
H |
3 |
// WASdkIntfUI |
d1f6ab
|
4 |
// |
H |
5 |
// Created by wuyx on 15/10/21. |
|
6 |
// Copyright © 2015年 GHW-T-01. All rights reserved. |
|
7 |
// |
|
8 |
|
|
9 |
#import <Foundation/Foundation.h> |
|
10 |
/*! |
|
11 |
@discussion WAUpdateInfo 更新包信息。 |
|
12 |
- - - |
|
13 |
*/ |
|
14 |
@interface WAUpdateInfo : NSObject<NSCoding,NSCopying> |
|
15 |
@property(nonatomic)int code; |
|
16 |
@property(nonatomic,copy)NSString* msg; |
|
17 |
@property(nonatomic)Boolean upgrated; |
|
18 |
@property(nonatomic)int patchId; |
|
19 |
@property(nonatomic)int patchVersion; |
|
20 |
@property(nonatomic,copy)NSString* patchEncrypt; |
|
21 |
@property(nonatomic,copy)NSString* moduleId; |
|
22 |
@property(nonatomic)Boolean isMandatory; |
|
23 |
@property(nonatomic,strong)NSString* downloadUrl; |
|
24 |
@property(nonatomic,copy)NSString* osign; |
|
25 |
+(WAUpdateInfo*)parserWithDict:(NSDictionary*)dict; |
|
26 |
@end |