using MediaBrowser.Model.Notifications;
namespace Jellyfin.Api.Models.NotificationDtos
{
    /// 
    /// The notification summary DTO.
    /// 
    public class NotificationsSummaryDto
    {
        /// 
        /// Gets or sets the number of unread notifications.
        /// 
        public int UnreadCount { get; set; }
        /// 
        /// Gets or sets the maximum unread notification level.
        /// 
        public NotificationLevel? MaxUnreadNotificationLevel { get; set; }
    }
}