mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			556 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			556 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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; }
 | |
|     }
 | |
| }
 |