123456789101112131415161718192021222324252627282930 |
- //
- // NoticeUnreadVC.h
- // smartRhino
- //
- // Created by armin on 2019/11/6.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseViewController.h"
- typedef enum ReadListType {
- ReadNoticeType = 0,
- ReadMissiveType = 1,
- } ReadListType;
- NS_ASSUME_NONNULL_BEGIN
- //通知已读未读 - 由文哲写的文章详情页点击未读数进行跳转
- @interface NoticeUnreadVC : BaseViewController
- @property (nonatomic, assign) ReadListType type;
- @property (nonatomic, assign) NSInteger Id;
- @property (nonatomic, assign) NSInteger readCount;
- @property (nonatomic, assign) NSInteger unReadCount;
- +(NoticeUnreadVC *)initNoticeUnreadVC;
- @end
- NS_ASSUME_NONNULL_END
|