diff options
Diffstat (limited to 'Emby.Server.Implementations/Notifications/IConfigurableNotificationService.cs')
| -rw-r--r-- | Emby.Server.Implementations/Notifications/IConfigurableNotificationService.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Notifications/IConfigurableNotificationService.cs b/Emby.Server.Implementations/Notifications/IConfigurableNotificationService.cs new file mode 100644 index 000000000..d74667c48 --- /dev/null +++ b/Emby.Server.Implementations/Notifications/IConfigurableNotificationService.cs @@ -0,0 +1,8 @@ +namespace Emby.Server.Implementations.Notifications +{ + public interface IConfigurableNotificationService + { + bool IsHidden { get; } + bool IsEnabled(string notificationType); + } +} |
