29 lines
839 B
Objective-C
29 lines
839 B
Objective-C
//
|
||
// SessionViewController.h
|
||
// YUMI
|
||
//
|
||
// Created by zu on 2021/11/28.
|
||
//
|
||
|
||
#import "MvpViewController.h"
|
||
#import "SessionListViewController.h"
|
||
#import <NIMSDK/NIMSDK.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface SessionViewController : MvpViewController
|
||
/// integer($int64)当 hallBtnStatus=6 时,对应的申请记录Id
|
||
@property (nonatomic,assign) NSInteger recordId;
|
||
///integer($int64)当 hallBtnStatus=6 时,对应的申请记录Id,用户申请
|
||
@property (nonatomic,assign) BOOL isUser;
|
||
///是否需要关注用户
|
||
@property(nonatomic,assign) BOOL isAttention;
|
||
- (instancetype)initWithSession:(NIMSession *)session;
|
||
@property (nonatomic, assign) SessionListOpenType openType;
|
||
///置顶回话
|
||
@property (nonatomic,strong) NSMutableDictionary<NIMSession *, NIMStickTopSessionInfo *> *stickTopMessages;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|