Ejemplo n.º 1
0
 public Notification()
 {
     this.alert = null;
     this.IosNotification = null;
     this.AndroidNotification = null;
     this.WinphoneNotification = null;
 }
Ejemplo n.º 2
0
        public static Notification winphone(String alert)
        {
            var platformNotification = new WinphoneNotification().setAlert(alert);

            var notificaiton = new Notification().setAlert(alert);
            notificaiton.WinphoneNotification = platformNotification;
            return notificaiton;
        }
Ejemplo n.º 3
0
 public Notification setWinphone(WinphoneNotification winphone)
 {
     this.WinphoneNotification = winphone;
     return this;
 }