You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
633 B
22 lines
633 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Jellyfin.Api.Models.NotificationDtos
|
|
{
|
|
/// <summary>
|
|
/// A list of notifications with the total record count for pagination.
|
|
/// </summary>
|
|
public class NotificationResultDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the current page of notifications.
|
|
/// </summary>
|
|
public IReadOnlyList<NotificationDto> Notifications { get; set; } = Array.Empty<NotificationDto>();
|
|
|
|
/// <summary>
|
|
/// Gets or sets the total number of notifications.
|
|
/// </summary>
|
|
public int TotalRecordCount { get; set; }
|
|
}
|
|
}
|