aboutsummaryrefslogtreecommitdiff
path: root/Emby.Notifications/NotificationManager.cs
diff options
context:
space:
mode:
authorErwin de Haan <EraYaN@users.noreply.github.com>2019-01-13 20:18:07 +0100
committerErwin de Haan <EraYaN@users.noreply.github.com>2019-01-13 20:18:07 +0100
commitdecc475f7c07eb011b20a5865dd094482722717e (patch)
treef5f151cbc813de1976892aee1f89ad1317994c1d /Emby.Notifications/NotificationManager.cs
parent5665933849714ba9c836950ad1b092e23f382d7b (diff)
Visual Studio Reformat: Emby.Notifications
Diffstat (limited to 'Emby.Notifications/NotificationManager.cs')
-rw-r--r--Emby.Notifications/NotificationManager.cs17
1 files changed, 8 insertions, 9 deletions
diff --git a/Emby.Notifications/NotificationManager.cs b/Emby.Notifications/NotificationManager.cs
index fa8fdd9c1..7a88dccf5 100644
--- a/Emby.Notifications/NotificationManager.cs
+++ b/Emby.Notifications/NotificationManager.cs
@@ -1,18 +1,17 @@
-using MediaBrowser.Common.Configuration;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading;
+using System.Threading.Tasks;
+using MediaBrowser.Common.Configuration;
using MediaBrowser.Common.Extensions;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Notifications;
-using Microsoft.Extensions.Logging;
-using MediaBrowser.Model.Notifications;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading;
-using System.Threading.Tasks;
-using MediaBrowser.Model.Extensions;
using MediaBrowser.Model.Dto;
+using MediaBrowser.Model.Notifications;
+using Microsoft.Extensions.Logging;
namespace Emby.Notifications
{