mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			346 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			346 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace API.DTOs.ReadingLists;
 | 
						|
 | 
						|
public sealed record UpdateReadingListByMultipleDto
 | 
						|
{
 | 
						|
    public int SeriesId { get; init; }
 | 
						|
    public int ReadingListId { get; init; }
 | 
						|
    public IReadOnlyList<int> VolumeIds { get; init; } = default!;
 | 
						|
    public IReadOnlyList<int> ChapterIds { get; init; } = default!;
 | 
						|
}
 |