mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 21:01:31 +03:00
24 lines
488 B
Objective-C
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
|