jellyfin/MediaBrowser.Server.Implementations/Notifications/IConfigurableNotificationService.cs
2016-03-27 23:11:27 +02:00

9 lines
213 B
C#

namespace MediaBrowser.Server.Implementations.Notifications
{
public interface IConfigurableNotificationService
{
bool IsHidden { get; }
bool IsEnabled(string notificationType);
}
}