jellyfin/Emby.Server.Implementations/Notifications/IConfigurableNotificationService.cs
2016-11-03 03:35:00 -04:00

9 lines
205 B
C#

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