SendInfoGroupSubTwoModel.h 626 B

12345678910111213141516171819202122232425
  1. //
  2. // SendInfoGroupSubTwoModel.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. /// 发送消息到小组 三级级数据 model
  11. @interface SendInfoGroupSubTwoModel : BaseModel
  12. @property (nonatomic, copy)NSString *name;
  13. @property (nonatomic, copy) UIImage *iconImage;
  14. /// 是否选中 : 0 ----> 未选中,1----> 选中
  15. @property (nonatomic, assign) NSInteger haveSelect;
  16. /// 是否有子级 : 0 ---> 没有子级 ,1---> 有子级
  17. @property (nonatomic, assign) NSInteger haveSon;
  18. @end
  19. NS_ASSUME_NONNULL_END