mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			220 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			220 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace API.DTOs.SideNav;
 | 
						|
 | 
						|
public class BulkUpdateSideNavStreamVisibilityDto
 | 
						|
{
 | 
						|
    public required IList<int> Ids { get; set; }
 | 
						|
    public required bool Visibility { get; set; }
 | 
						|
}
 |