mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			271 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			271 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace MediaBrowser.Model.Notifications
 | 
						|
{
 | 
						|
    public class NotificationQuery
 | 
						|
    {
 | 
						|
        public string UserId { get; set; }
 | 
						|
 | 
						|
        public bool? IsRead { get; set; }
 | 
						|
 | 
						|
        public int? StartIndex { get; set; }
 | 
						|
 | 
						|
        public int? Limit { get; set; }
 | 
						|
    }
 | 
						|
}
 |