blob: cdfd0f640f17974effe3292b68b930c0e8d32191 (
plain)
1
2
3
4
5
6
7
8
|
namespace MediaBrowser.Server.Implementations.Notifications
{
public interface IConfigurableNotificationService
{
bool IsHidden { get; }
bool IsEnabled(string notificationType);
}
}
|