123456789101112131415161718192021222324252627 |
- //
- // KBCommunityModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/16.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "KBCommunityDetailModel.h"
- @interface KBCommunityModel : NSObject
- @property (nonatomic, strong) NSString *Id; // y一键分享时将该id传递出来
- @property (nonatomic, strong) NSString *name; // d对应名称
- @property (nonatomic, strong) NSString *img; // d对应logo
- @property (nonatomic, strong) NSString *note; // d对应各个图片
- @property (nonatomic, strong) NSNumber *update_time; //更新时间
- @property (nonatomic, strong) NSArray<KBCommunityDetailModel *> *detail; // t图片列表
- @end
|