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