mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 12:51:42 +03:00
21 lines
391 B
Objective-C
21 lines
391 B
Objective-C
#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
|