Files
rssotto-csharp-client/ModVersionChecker/service/interfaces/INotifyIconService.cs
Jose Conde 5e16f781b4 phase 1
2025-09-29 16:02:00 +02:00

15 lines
357 B
C#

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