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

22 lines
589 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.

//
// V2NIMNotificationRouteConfig.h
// NIMSDK
//
// Created by 齐洪茹 on 2023/8/30.
// Copyright © 2023 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/// 路由抄送相关配置
@interface V2NIMNotificationRouteConfig : NSObject
/// 是否需要路由通知。抄送true需要。false不需要
@property(nonatomic,assign,readwrite) BOOL routeEnabled;
/// 环境变量,用于指向不同的抄送,第三方回调等配置
@property(nonatomic,strong,readwrite) NSString *routeEnvironment;
@end
NS_ASSUME_NONNULL_END