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/NotificationResultDto.cs | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Jellyfin.Api/Models/NotificationDtos/NotificationResultDto.cs (limited to 'Jellyfin.Api/Models/NotificationDtos/NotificationResultDto.cs') diff --git a/Jellyfin.Api/Models/NotificationDtos/NotificationResultDto.cs b/Jellyfin.Api/Models/NotificationDtos/NotificationResultDto.cs deleted file mode 100644 index 64e92bd83..000000000 --- a/Jellyfin.Api/Models/NotificationDtos/NotificationResultDto.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace Jellyfin.Api.Models.NotificationDtos -{ - /// - /// A list of notifications with the total record count for pagination. - /// - public class NotificationResultDto - { - /// - /// Gets or sets the current page of notifications. - /// - public IReadOnlyList Notifications { get; set; } = Array.Empty(); - - /// - /// Gets or sets the total number of notifications. - /// - public int TotalRecordCount { get; set; } - } -} -- cgit v1.2.3