Files
jellyfin-jellyfin-1/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-19 22:06:56 -04:00
{
public interface IConfigurableNotificationService
{
bool IsHidden { get; }
bool IsEnabled(string notificationType);
}
}