YOUPAILZLivePKDataAttachment.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. //
  2. // YOUPAILZLivePKDataAttachment.h
  3. // TIANYAN
  4. //
  5. // Created by CY on 2021/5/31.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "LCCustomAttachmentDefine.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YOUPAILZLivePKDataAttachment : NSObject<NIMCustomAttachment,LCCustomAttachmentInfo>
  12. @property (nonatomic, strong) NSString *type;
  13. @property (nonatomic, strong) NSString *time; /// 当前服务器时间
  14. @property (nonatomic, strong) NSString *start_time; /// pk开始时间
  15. @property (nonatomic, strong) NSString *pk_end_time; /// pk结束时间
  16. @property (nonatomic, strong) NSString *punish_end_time; /// 惩罚结束时间
  17. @property (nonatomic, strong) NSString *roomid; /// 聊天室id
  18. @property (nonatomic, strong) NSString *from_uid; /// 发起方的用户id
  19. @property (nonatomic, strong) NSString *from_num; /// 发起方的pk值
  20. @property (nonatomic, strong) NSString *to_uid; /// 接收方的用户id
  21. @property (nonatomic, strong) NSString *to_num; /// 接收方的pk值
  22. @property (nonatomic, strong) NSString *id;
  23. @end
  24. NS_ASSUME_NONNULL_END