aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Notifications/NotificationTypeInfo.cs
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2023-01-28 09:43:55 -0500
committerGitHub <noreply@github.com>2023-01-28 07:43:55 -0700
commitfec23de427fe1c46e4ce1aaf31f1695c90232059 (patch)
treeb0226f1e9345a607e3e857e8e32ba62051f82ef7 /MediaBrowser.Model/Notifications/NotificationTypeInfo.cs
parentabffd160c304486e9efbb8007fbd71a7e9b84449 (diff)
Remove Emby.Notifications (#9147)
Diffstat (limited to 'MediaBrowser.Model/Notifications/NotificationTypeInfo.cs')
-rw-r--r--MediaBrowser.Model/Notifications/NotificationTypeInfo.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/MediaBrowser.Model/Notifications/NotificationTypeInfo.cs b/MediaBrowser.Model/Notifications/NotificationTypeInfo.cs
deleted file mode 100644
index 402fbe81a..000000000
--- a/MediaBrowser.Model/Notifications/NotificationTypeInfo.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-#nullable disable
-#pragma warning disable CS1591
-
-namespace MediaBrowser.Model.Notifications
-{
- public class NotificationTypeInfo
- {
- public string Type { get; set; }
-
- public string Name { get; set; }
-
- public bool Enabled { get; set; }
-
- public string Category { get; set; }
-
- public bool IsBasedOnUserEvent { get; set; }
- }
-}