// // MoreAppModel.h // smartRhino // // Created by armin on 2019/11/5. // Copyright © 2019 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN typedef enum ChatMenuType { ///通知 ChatMenuNoticeType = 1, ///站内信 ChatMenuZhanXinType = 2, ///通讯录 ChatMenuTeleListType = 3, ///小组 ChatMenuGroupType = 4, ///话题 ChatMenutopicType = 5, ///待办事项 ChatMenuWaitType = 6, }ChatMenuType; @class MoreAppInfoModel; @interface MoreAppModel : NSObject @property (strong,nonatomic) NSString *sectionTitle; @property (assign,nonatomic) BOOL isCloseSectionFlag; @property (strong,nonatomic) NSMutableArray *moreAppInfoArray; @end @interface MoreAppInfoModel : NSObject @property (strong,nonatomic) NSString *title; @property (strong,nonatomic) NSString *imgName; @property (strong,nonatomic) NSString *notImgName; @property (assign,nonatomic) NSInteger readNum; @property (assign,nonatomic) ChatMenuType type; @property (assign,nonatomic) BOOL showEditFlag; @end NS_ASSUME_NONNULL_END