26 lines
601 B
Objective-C
26 lines
601 B
Objective-C
//
|
|
// XPKickUserModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/11/25.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPKickUserModel : NSObject
|
|
///安卓使用的是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;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|