12345678910111213141516171819202122 |
- //
- // YOUPAILZChatRoomApplySeatAttachment.h
- // VQU
- //
- // Created by CY on 2021/11/6.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "LCCustomAttachmentDefine.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZChatRoomApplySeatAttachment : NSObject<NIMCustomAttachment,LCCustomAttachmentInfo>
- @property (nonatomic,strong)NSString *roomid;
- @property (nonatomic,strong)NSString *op_uid;
- @property (nonatomic,strong)NSString *num;
- @property (nonatomic,strong)NSString *status; //0、拒绝,1、同意,2、用户申请
- @end
- NS_ASSUME_NONNULL_END
|