WFCCUnreadCount.h 531 B

123456789101112131415161718192021
  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. #import "WFCCJsonSerializer.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface WFCCUnreadCount : WFCCJsonSerializer
  12. +(instancetype)countOf:(int)unread mention:(int)mention mentionAll:(int)mentionAll;
  13. @property(nonatomic, assign)int unread;
  14. @property(nonatomic, assign)int unreadMention;
  15. @property(nonatomic, assign)int unreadMentionAll;
  16. @end
  17. NS_ASSUME_NONNULL_END