commit | author | age
|
d1f6ab
|
1 |
// |
H |
2 |
// GHWSDKFBApplication.h |
|
3 |
// GHWSdkUI |
|
4 |
// |
|
5 |
// Created by wuyx on 15/9/15. |
|
6 |
// Copyright (c) 2015年 GHW-T-01. All rights reserved. |
|
7 |
// |
|
8 |
|
|
9 |
#import <Foundation/Foundation.h> |
|
10 |
/*! |
|
11 |
@discussion WAFBApplication |
|
12 |
- - - |
|
13 |
*/ |
|
14 |
@interface WAFBApplication : NSObject<NSCoding,NSCopying> |
|
15 |
/*! |
|
16 |
@abstract ID |
|
17 |
*/ |
|
18 |
@property(nonatomic,strong)NSString* ID; |
|
19 |
/*! |
|
20 |
@abstract name |
|
21 |
*/ |
|
22 |
@property(nonatomic,strong)NSString* name; |
|
23 |
/*! |
|
24 |
@abstract name_space |
|
25 |
*/ |
|
26 |
@property(nonatomic,strong)NSString* name_space; |
|
27 |
/*! |
|
28 |
@abstract category |
|
29 |
*/ |
|
30 |
@property(nonatomic,strong)NSString* category; |
|
31 |
/*! |
|
32 |
@abstract link |
|
33 |
*/ |
|
34 |
@property(nonatomic,strong)NSString* link; |
|
35 |
+(WAFBApplication *)parserWithResultDict:(NSDictionary *)resultDict; |
|
36 |
@end |