using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace gehGassi.LocalNotifications { public delegate void NotificationTappedEventHandler(NotificationEventArgs e); public delegate void NotificationReceivedEventHandler(NotificationEventArgs e); /// /// Eventargs für eine Notifications /// public class NotificationEventArgs : EventArgs { /// /// ID der Nachricht /// public int? NotificationId { get; set; } /// /// Payload /// public string Payload { get; set; } /// /// Handel es sich um eine lokale Pushn-Notification? /// public bool IsLocal { get; set; } } }