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

23 lines
573 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.

// Copyright (c) 2022 NetEase, Inc. All rights reserved.
// Use of this source code is governed by a MIT license that can be
// found in the LICENSE file.
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NERtcCallKitPushConfig : NSObject
/// 推送标题,可修改
@property(nonatomic, copy) NSString *pushTitle;
/// 推送内容,可修改
@property(nonatomic, copy) NSString *pushContent;
/// 推送payload内容可自行添加键值对
@property(nonatomic, strong, readonly) NSMutableDictionary *pushPayload;
@end
NS_ASSUME_NONNULL_END