using System; namespace RocPush { public interface ILocalNotificationService { public event Action NotificationClicked; void Initialize(); NotificationId Schedule(TimeSpan delay, PanNotification notification, int badgeCount = 1); NotificationId Schedule(TimeSpan delay, PanNotification notification); void CancelScheduledNotification(NotificationId id); void CancelScheduledNotifications(); } }