2
0

NotificationsSummaryDto.cs 556 B

1234567891011121314151617181920
  1. using MediaBrowser.Model.Notifications;
  2. namespace Jellyfin.Api.Models.NotificationDtos
  3. {
  4. /// <summary>
  5. /// The notification summary DTO.
  6. /// </summary>
  7. public class NotificationsSummaryDto
  8. {
  9. /// <summary>
  10. /// Gets or sets the number of unread notifications.
  11. /// </summary>
  12. public int UnreadCount { get; set; }
  13. /// <summary>
  14. /// Gets or sets the maximum unread notification level.
  15. /// </summary>
  16. public NotificationLevel? MaxUnreadNotificationLevel { get; set; }
  17. }
  18. }