NoticeUnreadVC.h 690 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // NoticeUnreadVC.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/6.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. typedef enum ReadListType {
  10. ReadNoticeType = 0,
  11. ReadMissiveType = 1,
  12. } ReadListType;
  13. NS_ASSUME_NONNULL_BEGIN
  14. //通知已读未读 - 由文哲写的文章详情页点击未读数进行跳转
  15. @interface NoticeUnreadVC : BaseViewController
  16. @property (nonatomic, assign) ReadListType type;
  17. @property (nonatomic, assign) NSInteger Id;
  18. @property (nonatomic, assign) NSInteger readCount;
  19. @property (nonatomic, assign) NSInteger unReadCount;
  20. +(NoticeUnreadVC *)initNoticeUnreadVC;
  21. @end
  22. NS_ASSUME_NONNULL_END