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

9 lines
213 B
C#
Raw Normal View History

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