public NotificationPayload(string deviceToken, string alert) { DeviceToken = deviceToken; Alert = new NotificationAlert() { Body = alert }; CustomItems = new Dictionary <string, object[]>(); }
public NotificationPayload(string deviceToken, string alert, int badge, string sound) { DeviceToken = deviceToken; Alert = new NotificationAlert() { Body = alert }; Badge = badge; Sound = sound; CustomItems = new Dictionary <string, object[]>(); }