using System.Threading.Tasks; using ElectronNET.API.Entities; namespace ElectronNET.API.Interfaces { /// /// Create OS desktop notifications /// public interface INotification { /// /// Create OS desktop notifications /// /// void Show(NotificationOptions notificationOptions); /// /// Whether or not desktop notifications are supported on the current system. /// /// Task IsSupportedAsync(); } }