using System;
using System.Threading.Tasks;
using Abp.Domain.Services;
namespace Abp.Notifications
{
///
/// Used to distribute notifications to users.
///
public interface INotificationDistributer : IDomainService
{
///
/// Distributes given notification to users.
///
/// The notification id.
Task DistributeAsync(Guid notificationId);
}
}