QNAudioVolumeInfo.h 494 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // QNAudioVolumeInfo.h
  3. // QNRTCKit
  4. //
  5. // Created by 冯文秀 on 2023/5/18.
  6. // Copyright © 2023 Pili Engineering, Qiniu Inc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface QNAudioVolumeInfo : NSObject
  11. /*!
  12. * @abstract 用户 ID
  13. *
  14. * @since v5.2.3
  15. */
  16. @property (nonatomic, readonly) NSString *userID;
  17. /*!
  18. * @abstract 用户实时音量
  19. *
  20. * @since v5.2.3
  21. */
  22. @property (nonatomic, readonly) float volume;
  23. @end
  24. NS_ASSUME_NONNULL_END