2025-10-09 16:48:46 +08:00

31 lines
481 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.

//
// NIMSessionStatContext.h
// NIMLib
//
// Created by Netease.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
* 会话统计上下文信息
*/
@interface NIMSessionStatContext : NSObject
/**
* 总数
*/
@property (nonatomic,assign,readonly) NSInteger total;
/**
* 当前序号1 based
*/
@property (nonatomic,assign,readonly) NSInteger current;
@end
NS_ASSUME_NONNULL_END