From f2200c97cbd79e5ff432948ee0fbd1e66ffa4e14 Mon Sep 17 00:00:00 2001 From: Niels van Velzen Date: Tue, 27 Dec 2022 14:24:34 +0100 Subject: Remove unused notification endpoints (#8952) --- .../NotificationDtos/AdminNotificationDto.cs | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 Jellyfin.Api/Models/NotificationDtos/AdminNotificationDto.cs (limited to 'Jellyfin.Api/Models/NotificationDtos/AdminNotificationDto.cs') diff --git a/Jellyfin.Api/Models/NotificationDtos/AdminNotificationDto.cs b/Jellyfin.Api/Models/NotificationDtos/AdminNotificationDto.cs deleted file mode 100644 index 2c3a6282f2..0000000000 --- a/Jellyfin.Api/Models/NotificationDtos/AdminNotificationDto.cs +++ /dev/null @@ -1,30 +0,0 @@ -using MediaBrowser.Model.Notifications; - -namespace Jellyfin.Api.Models.NotificationDtos -{ - /// - /// The admin notification dto. - /// - public class AdminNotificationDto - { - /// - /// Gets or sets the notification name. - /// - public string? Name { get; set; } - - /// - /// Gets or sets the notification description. - /// - public string? Description { get; set; } - - /// - /// Gets or sets the notification level. - /// - public NotificationLevel? NotificationLevel { get; set; } - - /// - /// Gets or sets the notification url. - /// - public string? Url { get; set; } - } -} -- cgit v1.2.3