1234567891011121314151617181920212223242526272829 |
- //
- // SendInfoGroupSubModel.h
- // smartRhino
- //
- // Created by tederen on 2019/11/4.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @class SendInfoGroupSubTwoModel;
- /// 发送消息到小组 二级级数据 model
- @interface SendInfoGroupSubModel : BaseModel
- @property (nonatomic, copy)NSString *name;
- @property (nonatomic, copy) UIImage *iconImage;
- /// 是否选中 : 0 ----> 未选中,1----> 选中
- @property (nonatomic, assign) NSInteger haveSelect;
- /// 是否有子级 : 0 ---> 没有子级 ,1---> 有子级
- @property (nonatomic, assign) NSInteger haveSon;
- @property (nonatomic, copy) NSMutableArray <SendInfoGroupSubTwoModel*> *subGroupArray;
- @end
- NS_ASSUME_NONNULL_END
|