aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Notifications/IConfigurableNotificationService.cs
blob: d74667c486d2b99902d8a2deb91f0e5da032c9fb (plain)
1
2
3
4
5
6
7
8
namespace Emby.Server.Implementations.Notifications
{
    public interface IConfigurableNotificationService
    {
        bool IsHidden { get; }
        bool IsEnabled(string notificationType);
    }
}