tangtaoit 7b0c1bc743 init
2023-05-25 10:32:00 +08:00

33 lines
622 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.

//
// WKReaction.h
// WuKongIMSDK
//
// Created by tt on 2021/9/13.
//
#import <Foundation/Foundation.h>
#import "WKChannel.h"
NS_ASSUME_NONNULL_BEGIN
@interface WKReaction : NSObject
@property(nonatomic,strong) WKChannel *channel;
// 消息ID全局唯一
@property(nonatomic,assign) uint64_t messageId;
// 回应uid
@property(nonatomic,copy) NSString *uid;
// 回应的emoji
@property(nonatomic,copy) NSString *emoji;
@property(nonatomic,assign) uint64_t version;
// 回应时间
@property(nonatomic,copy) NSString *createdAt;
@property(nonatomic,assign) NSInteger isDeleted;
@end
NS_ASSUME_NONNULL_END