using Abp.Collections;
namespace Abp.Notifications
{
///
/// Used to configure notification system.
///
public interface INotificationConfiguration
{
///
/// Notification providers.
///
ITypeList Providers { get; }
///
/// A list of contributors for notification distribution process.
///
ITypeList Distributers { get; }
}
}