1234567891011121314151617181920212223242526272829303132333435363738 |
- /*!
- * \~chinese
- * @header EMVoiceMessageBody.h
- * @abstract 语音消息体
- * @author Hyphenate
- * @version 3.00
- *
- * \~english
- * @header EMVoiceMessageBody.h
- * @abstract Voice message body
- * @author Hyphenate
- * @version 3.00
- */
- #import <Foundation/Foundation.h>
- #import "EMFileMessageBody.h"
- /*!
- * \~chinese
- * 语音消息体
- *
- * \~english
- * Voice message body
- */
- @interface EMVoiceMessageBody : EMFileMessageBody
- /*!
- * \~chinese
- * 语音时长, 秒为单位
- *
- * \~english
- * Voice duration, in seconds
- */
- @property (nonatomic) int duration;
- @end
|