mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 02:13:43 +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);
|
|
}
|
|
}
|