2025-10-09 16:48:46 +08:00

42 lines
679 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// NIMResourceExtraInfo.h
// NIMLib
//
// Created by He on 2019/9/4.
// Copyright © 2019 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
* 资源辅助信息
*/
@interface NIMResourceExtraInfo : NSObject
/**
* MIME类型
*/
@property (nonatomic,copy,nullable) NSString *mime;
/**
* 资源对应场景
*/
@property (nonatomic,copy,null_resettable) NSString *scene;
/**
* 资源文件MD5值
*/
@property (nonatomic,copy,nullable) NSString *md5;
/**
* 聊天室Id通常在独立聊天室的资源文件时候使用
*/
@property (nonatomic,copy,nullable) NSString *roomId;
@end
NS_ASSUME_NONNULL_END