mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			342 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			342 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.DTOs;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// This is explicitly for Tachiyomi. Number field was removed in v0.8.0, but Tachiyomi needs it for the hacks.
 | 
						|
/// </summary>
 | 
						|
public class TachiyomiChapterDto : ChapterDto
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Smallest number of the Range.
 | 
						|
    /// </summary>
 | 
						|
    public string Number { get; init; } = default!;
 | 
						|
}
 |