commit | author | age
|
dcdc07
|
1 |
// |
W |
2 |
// WAVKCommunity.h |
|
3 |
// WAVkImplUI |
|
4 |
// |
|
5 |
// Created by wuyx on 16/7/7. |
|
6 |
// Copyright © 2016年 GHW. All rights reserved. |
|
7 |
// |
|
8 |
|
|
9 |
#import <Foundation/Foundation.h> |
|
10 |
|
|
11 |
@interface WAGroup : NSObject |
|
12 |
@property(nonatomic,copy)NSString* gid; |
|
13 |
@property(nonatomic,copy)NSString* name; |
|
14 |
@property(nonatomic,copy)NSString* screen_name; |
|
15 |
@property(nonatomic,copy)NSString* type; |
|
16 |
@property(nonatomic,copy)NSString* photo; |
|
17 |
@property(nonatomic,copy)NSString* photo_medium; |
|
18 |
@property(nonatomic,copy)NSString* photo_big; |
|
19 |
@property(nonatomic,copy)NSString* desc; |
|
20 |
@property(nonatomic,copy)NSString* members_count; |
|
21 |
@property(nonatomic,copy)NSString* status; |
|
22 |
@property(nonatomic,copy)NSString* schemeUrl; |
|
23 |
@property(nonatomic,copy)NSString* pageUrl; |
|
24 |
@property(nonatomic)int is_closed; |
|
25 |
@property(nonatomic)BOOL is_member; |
|
26 |
+(NSArray*)parseWithDict:(NSDictionary*)dict; |
|
27 |
+(NSArray*)parseWithArray:(NSArray*)arr; |
|
28 |
@end |