1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // MoreAppModel.h
- // smartRhino
- //
- // Created by armin on 2019/11/5.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef enum ChatMenuType {
- ///通知
- ChatMenuNoticeType = 1,
- ///站内信
- ChatMenuZhanXinType = 2,
- ///通讯录
- ChatMenuTeleListType = 3,
- ///小组
- ChatMenuGroupType = 4,
- ///话题
- ChatMenutopicType = 5,
- ///待办事项
- ChatMenuWaitType = 6,
- ///私信
- ChatMenuSiXinType = 7,
- ///回复我的
- ChatMenuReplayType = 8,
- ///验证信息
- ChatMenuVerifyType = 9,
- ///话题本
- ChatMenuTopicBookType = 10,
- ///小组广场
- ChatMenuSquareType = 11,
- }ChatMenuType;
- @class MoreAppInfoModel;
- @interface MoreAppModel : NSObject
- @property (strong,nonatomic) NSString *sectionTitle;
- @property (assign,nonatomic) BOOL isCloseSectionFlag;
-
- @property (strong,nonatomic) NSMutableArray<MoreAppInfoModel *> *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
|