jellyfin/MediaBrowser.Server.Implementations/Notifications/IConfigurableNotificationService.cs

9 lines
213 B
C#
Raw Normal View History

2016-03-27 23:11:27 +02:00
namespace MediaBrowser.Server.Implementations.Notifications
2015-09-20 04:06:56 +02:00
{
public interface IConfigurableNotificationService
{
bool IsHidden { get; }
bool IsEnabled(string notificationType);
}
}