2
0

WFCCUnreadCount.h 490 B

1234567891011121314151617181920
  1. //
  2. // WFCCUnreadCount.h
  3. // WFChatClient
  4. //
  5. // Created by WF Chat on 2018/9/30.
  6. // Copyright © 2018 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface WFCCUnreadCount : NSObject
  11. +(instancetype)countOf:(int)unread mention:(int)mention mentionAll:(int)mentionAll;
  12. @property(nonatomic, assign)int unread;
  13. @property(nonatomic, assign)int unreadMention;
  14. @property(nonatomic, assign)int unreadMentionAll;
  15. @end
  16. NS_ASSUME_NONNULL_END