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; }
    }
}