NIMResourceExtraInfo.h 604 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // NIMResourceExtraInfo.h
  3. // NIMLib
  4. //
  5. // Created by He on 2019/9/4.
  6. // Copyright © 2019 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /**
  11. * 资源辅助信息
  12. */
  13. @interface NIMResourceExtraInfo : NSObject
  14. /**
  15. * 资源对应场景
  16. */
  17. @property (nonatomic,copy,null_resettable) NSString *scene;
  18. /**
  19. * 资源文件MD5值
  20. */
  21. @property (nonatomic,copy,nullable) NSString *md5;
  22. /**
  23. * 聊天室Id,通常在独立聊天室的资源文件时候使用
  24. */
  25. @property (nonatomic,copy,nullable) NSString *roomId;
  26. @end
  27. NS_ASSUME_NONNULL_END