22 lines
332 B
Objective-C
22 lines
332 B
Objective-C
//
|
|
// SessionRiskCache.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/8/11.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SessionRiskCache : NSObject
|
|
|
|
+ (instancetype)shareCache;
|
|
|
|
- (void)saveCloseRisk:(NSString *)userId;
|
|
|
|
- (NSString *)getCloseChatRiskAlert:(NSString *)userid;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|