mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			256 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			256 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.DTOs.Dashboard;
 | 
						|
 | 
						|
public class UpdateDashboardStreamPositionDto
 | 
						|
{
 | 
						|
    public int FromPosition { get; set; }
 | 
						|
    public int ToPosition { get; set; }
 | 
						|
    public int DashboardStreamId { get; set; }
 | 
						|
    public string StreamName { get; set; }
 | 
						|
}
 |