ecency-mobile/ios/Pods/AppCenter/AppCenter-SDK-Apple/iOS/AppCenterPush.framework/Headers/MSPushNotification.h
2019-08-02 14:19:31 +03:00

24 lines
488 B
Objective-C

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#import <Foundation/Foundation.h>
@interface MSPushNotification : NSObject
/**
* Notification title.
*/
@property(nonatomic, copy, readonly) NSString *title;
/**
* Notification message.
*/
@property(nonatomic, copy, readonly) NSString *message;
/**
* Custom data for the notification.
*/
@property(nonatomic, copy, readonly) NSDictionary<NSString *, NSString *> *customData;
@end