aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/NotificationDtos/NotificationsSummaryDto.cs
blob: 0568dea666b12e16a9dcdf5c8189a31fb5e39807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using MediaBrowser.Model.Notifications;

namespace Jellyfin.Api.Models.NotificationDtos
{
    /// <summary>
    /// The notification summary DTO.
    /// </summary>
    public class NotificationsSummaryDto
    {
        /// <summary>
        /// Gets or sets the number of unread notifications.
        /// </summary>
        public int UnreadCount { get; set; }

        /// <summary>
        /// Gets or sets the maximum unread notification level.
        /// </summary>
        public NotificationLevel? MaxUnreadNotificationLevel { get; set; }
    }
}