EMVoiceMessageBody.h 594 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*!
  2. * \~chinese
  3. * @header EMVoiceMessageBody.h
  4. * @abstract 语音消息体
  5. * @author Hyphenate
  6. * @version 3.00
  7. *
  8. * \~english
  9. * @header EMVoiceMessageBody.h
  10. * @abstract Voice message body
  11. * @author Hyphenate
  12. * @version 3.00
  13. */
  14. #import <Foundation/Foundation.h>
  15. #import "EMFileMessageBody.h"
  16. /*!
  17. * \~chinese
  18. * 语音消息体
  19. *
  20. * \~english
  21. * Voice message body
  22. */
  23. @interface EMVoiceMessageBody : EMFileMessageBody
  24. /*!
  25. * \~chinese
  26. * 语音时长, 秒为单位
  27. *
  28. * \~english
  29. * Voice duration, in seconds
  30. */
  31. @property (nonatomic) int duration;
  32. @end