1234567891011121314151617181920212223 |
- //
- // YOUPAILZChatRoomInviactionUpSeatAttachment.h
- // VQU
- //
- // Created by CY on 2021/11/5.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "LCCustomAttachmentDefine.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZChatRoomInviactionUpSeatAttachment : NSObject<NIMCustomAttachment,LCCustomAttachmentInfo>
- @property(nonatomic,strong)NSString *roomid; // 房间号
- @property(nonatomic,strong)NSString *from_uid; // 房间号
- @property(nonatomic,strong)NSString *to_uid; // 房间号
- @property(nonatomic,strong)NSString *seat; // 房间号
- @end
- NS_ASSUME_NONNULL_END
|