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) --- .../Models/NotificationDtos/NotificationDto.cs | 51 ---------------------- 1 file changed, 51 deletions(-) delete mode 100644 Jellyfin.Api/Models/NotificationDtos/NotificationDto.cs (limited to 'Jellyfin.Api/Models/NotificationDtos/NotificationDto.cs') diff --git a/Jellyfin.Api/Models/NotificationDtos/NotificationDto.cs b/Jellyfin.Api/Models/NotificationDtos/NotificationDto.cs deleted file mode 100644 index af5239ec2..000000000 --- a/Jellyfin.Api/Models/NotificationDtos/NotificationDto.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using MediaBrowser.Model.Notifications; - -namespace Jellyfin.Api.Models.NotificationDtos -{ - /// - /// The notification DTO. - /// - public class NotificationDto - { - /// - /// Gets or sets the notification ID. Defaults to an empty string. - /// - public string Id { get; set; } = string.Empty; - - /// - /// Gets or sets the notification's user ID. Defaults to an empty string. - /// - public string UserId { get; set; } = string.Empty; - - /// - /// Gets or sets the notification date. - /// - public DateTime Date { get; set; } - - /// - /// Gets or sets a value indicating whether the notification has been read. Defaults to false. - /// - public bool IsRead { get; set; } = false; - - /// - /// Gets or sets the notification's name. Defaults to an empty string. - /// - public string Name { get; set; } = string.Empty; - - /// - /// Gets or sets the notification's description. Defaults to an empty string. - /// - public string Description { get; set; } = string.Empty; - - /// - /// Gets or sets the notification's URL. Defaults to an empty string. - /// - public string Url { get; set; } = string.Empty; - - /// - /// Gets or sets the notification level. - /// - public NotificationLevel Level { get; set; } - } -} -- cgit v1.2.3