// // WFCCNotificationMessageContent.h // WFChatClient // // Created by heavyrain on 2017/9/19. // Copyright © 2017年 WildFireChat. All rights reserved. // #import "WFCCMessageContent.h" /** 通知消息的协议 */ @protocol WFCCNotificationMessageContent /** 获取通知的提示内容 @return 提示内容 */ - (NSString *)formatNotification; @end /** 通知消息 */ @interface WFCCNotificationMessageContent : WFCCMessageContent @end