EMCustomMessageBody.h 618 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*!
  2. * \~chinese
  3. * @header EMCmdMessageBody.h
  4. * @abstract 命令消息体
  5. * @author Hyphenate
  6. * @version 3.00
  7. *
  8. * \~english
  9. * @header EMCmdMessageBody.h
  10. * @abstract Command message body
  11. * @author Hyphenate
  12. * @version 3.00
  13. */
  14. #import <Foundation/Foundation.h>
  15. #import "EMMessageBody.h"
  16. /*!
  17. * \~chinese
  18. * 自定义消息体
  19. *
  20. * \~english
  21. * Custom message body
  22. */
  23. @interface EMCustomMessageBody : EMMessageBody
  24. @property (nonatomic, copy) NSString *event;
  25. @property (nonatomic, copy) NSDictionary *ext;
  26. - (instancetype)initWithEvent:(NSString *)aEvent ext:(NSDictionary *)aExt;
  27. @end