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

38 lines
582 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.

//
// 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
/**
* 收藏类型, > 0的类型
*/
@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