天天省钱快报

KBCommunityModel.h 755B

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