30 lines
783 B
Objective-C
30 lines
783 B
Objective-C
//
|
|
// YMKickUserModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/11/25.
|
|
//
|
|
///用户被踢出房间的模型
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPKickUserModel : PIBaseModel
|
|
///安卓使用的是Uid 所以加了一个这样的属性
|
|
@property (nonatomic, assign) NSInteger uid;
|
|
///处理de uid
|
|
@property (nonatomic, assign) NSInteger handleUid;
|
|
///处理人的昵称
|
|
@property (nonatomic, copy) NSString *handleNick;
|
|
///目标用户的uid
|
|
@property (nonatomic, assign) NSInteger targetUid;
|
|
///目标用户的昵称
|
|
@property (nonatomic, copy) NSString *targetNick;
|
|
///目标坑位
|
|
@property (nonatomic, copy) NSString *micPosition;
|
|
///超管踢人的时候目标坑位
|
|
@property (nonatomic, copy) NSString *micNumber;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|