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