move notification classes

This commit is contained in:
Luke Pulverenti
2016-11-03 03:35:00 -04:00
parent b76a1abda5
commit 0d5d91b4c4
8 changed files with 11 additions and 10 deletions

View File

@@ -0,0 +1,8 @@
namespace Emby.Server.Implementations.Notifications
{
public interface IConfigurableNotificationService
{
bool IsHidden { get; }
bool IsEnabled(string notificationType);
}
}