aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Notifications/Notification.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Notifications/Notification.cs')
-rw-r--r--MediaBrowser.Model/Notifications/Notification.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/MediaBrowser.Model/Notifications/Notification.cs b/MediaBrowser.Model/Notifications/Notification.cs
deleted file mode 100644
index 5439b838d..000000000
--- a/MediaBrowser.Model/Notifications/Notification.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using System;
-
-namespace MediaBrowser.Model.Notifications
-{
- public class Notification
- {
- public string Id { get; set; }
-
- public string UserId { get; set; }
-
- public DateTime Date { get; set; }
-
- public bool IsRead { get; set; }
-
- public string Name { get; set; }
-
- public string Description { get; set; }
-
- public string Url { get; set; }
-
- public NotificationLevel Level { get; set; }
- }
-}