aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Notifications/NotificationsSummary.cs
blob: 87dd51a5f021aad7e40ea5a09f4db0f0172e754d (plain)
1
2
3
4
5
6
7
8
9
namespace MediaBrowser.Model.Notifications
{
    public class NotificationsSummary
    {
        public int UnreadCount { get; set; }
        public NotificationLevel MaxUnreadNotificationLevel { get; set; }
    }
}