IConfigurableNotificationService.cs 205 B

12345678
  1. namespace Emby.Server.Implementations.Notifications
  2. {
  3. public interface IConfigurableNotificationService
  4. {
  5. bool IsHidden { get; }
  6. bool IsEnabled(string notificationType);
  7. }
  8. }