mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			660 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			660 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.DTOs.Metadata.Matching;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// Used for matching a series with Kavita+ for metadata and scrobbling
 | 
						|
/// </summary>
 | 
						|
public sealed record MatchSeriesDto
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// When set, Kavita will stop attempting to match this series and will not perform any scrobbling
 | 
						|
    /// </summary>
 | 
						|
    public bool DontMatch { get; set; }
 | 
						|
    /// <summary>
 | 
						|
    /// Series Id to pull internal metadata from to improve matching
 | 
						|
    /// </summary>
 | 
						|
    public int SeriesId { get; set; }
 | 
						|
    /// <summary>
 | 
						|
    /// Free form text to query for. Can be a url and ids will be parsed from it
 | 
						|
    /// </summary>
 | 
						|
    public string Query { get; set; }
 | 
						|
}
 |