SendInfoGroupSubModel.h 742 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // SendInfoGroupSubModel.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/4.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class SendInfoGroupSubTwoModel;
  11. /// 发送消息到小组 二级级数据 model
  12. @interface SendInfoGroupSubModel : BaseModel
  13. @property (nonatomic, copy)NSString *name;
  14. @property (nonatomic, copy) UIImage *iconImage;
  15. /// 是否选中 : 0 ----> 未选中,1----> 选中
  16. @property (nonatomic, assign) NSInteger haveSelect;
  17. /// 是否有子级 : 0 ---> 没有子级 ,1---> 有子级
  18. @property (nonatomic, assign) NSInteger haveSon;
  19. @property (nonatomic, copy) NSMutableArray <SendInfoGroupSubTwoModel*> *subGroupArray;
  20. @end
  21. NS_ASSUME_NONNULL_END