WFCCNotificationMessageContent.h 514 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // WFCCNotificationMessageContent.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/9/19.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCMessageContent.h"
  9. /**
  10. 通知消息的协议
  11. */
  12. @protocol WFCCNotificationMessageContent <WFCCMessageContent>
  13. /**
  14. 获取通知的提示内容
  15. @return 提示内容
  16. */
  17. - (NSString *)formatNotification;
  18. @end
  19. /**
  20. 通知消息
  21. */
  22. @interface WFCCNotificationMessageContent : WFCCMessageContent <WFCCNotificationMessageContent>
  23. @end