2025-04-02 22:08:17 +01:00

10 lines
280 B
C#

namespace EnotaryoPH.Web.Common.Services
{
public interface INotificationService
{
Task NotifyAllAsync(string message);
Task NotifyUserAsync(string message, string userID);
Task NotifyUsersAsync(string message, params string[] userIDs);
}
}