Files
peko-ios/YuMi/Modules/YMMessage/View/Session/SessionViewController.h
2023-09-12 18:04:05 +08:00

29 lines
839 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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