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

9 lines
205 B
C#
Raw Normal View History

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