using System; using System.Collections.Generic; using System.Text; namespace SunlightAggregationTerminal { public interface INotificationService { void SendNotification(string title, string message, int notificationId = 0); } }