mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-26 22:52:44 +01:00
8 lines
213 B
C#
8 lines
213 B
C#
namespace MediaBrowser.Server.Implementations.Notifications
|
|
{
|
|
public interface IConfigurableNotificationService
|
|
{
|
|
bool IsHidden { get; }
|
|
bool IsEnabled(string notificationType);
|
|
}
|
|
}
|