Example #1
0
 public NotificationPayload(string deviceToken, string alert, int badge)
 {
     DeviceToken = deviceToken;
     Alert = new NotificationAlert() { Body = alert };
     Badge = badge;
     CustomItems = new Dictionary<string, object[]>();
 }
Example #2
0
 public NotificationPayload(string deviceToken)
 {
     DeviceToken = deviceToken;
     Alert = new NotificationAlert();
     CustomItems = new Dictionary<string, object[]>();
 }