12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // NIMAddCollectParams.h
- // NIMLib
- //
- // Created by 丁文超 on 2020/4/1.
- // Copyright © 2020 Netease. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NIMAddCollectParams : NSObject
- /**
- * 收藏类型
- */
- @property (nonatomic, assign) NSInteger type;
- /**
- * 数据,最大20KB
- */
- @property (nonatomic, copy) NSString *data;
- /**
- * 扩展字段,最大1KB
- */
- @property (nonatomic, copy) NSString *ext;
- /**
- * 去重唯一ID
- */
- @property (nonatomic, copy) NSString *uniqueId;
- @end
- NS_ASSUME_NONNULL_END
|