1234567891011121314151617181920212223242526272829 |
- //
- // YOUPAILZLivePKDataAttachment.h
- // TIANYAN
- //
- // Created by CY on 2021/5/31.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "LCCustomAttachmentDefine.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZLivePKDataAttachment : NSObject<NIMCustomAttachment,LCCustomAttachmentInfo>
- @property (nonatomic, strong) NSString *type;
- @property (nonatomic, strong) NSString *time; /// 当前服务器时间
- @property (nonatomic, strong) NSString *start_time; /// pk开始时间
- @property (nonatomic, strong) NSString *pk_end_time; /// pk结束时间
- @property (nonatomic, strong) NSString *punish_end_time; /// 惩罚结束时间
- @property (nonatomic, strong) NSString *roomid; /// 聊天室id
- @property (nonatomic, strong) NSString *from_uid; /// 发起方的用户id
- @property (nonatomic, strong) NSString *from_num; /// 发起方的pk值
- @property (nonatomic, strong) NSString *to_uid; /// 接收方的用户id
- @property (nonatomic, strong) NSString *to_num; /// 接收方的pk值
- @property (nonatomic, strong) NSString *id;
- @end
- NS_ASSUME_NONNULL_END
|