NotificationsSummary.cs 220 B

123456789
  1. 
  2. namespace MediaBrowser.Model.Notifications
  3. {
  4. public class NotificationsSummary
  5. {
  6. public int UnreadCount { get; set; }
  7. public NotificationLevel MaxUnreadNotificationLevel { get; set; }
  8. }
  9. }