using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ModVersionChecker.service.interfaces { public interface INotificationService { void SetNotifyIcon(NotifyIcon icon); void ShowBalloonTip(int millis, string title, string message, ToolTipIcon icon); } }