10 lines
280 B
C#
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);
|
|
}
|
|
} |