mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			304 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			304 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
using API.Entities.MetadataMatching;
 | 
						|
 | 
						|
namespace API.Entities.Interfaces;
 | 
						|
 | 
						|
public interface IHasKPlusMetadata
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Tracks which metadata has been set by K+
 | 
						|
    /// </summary>
 | 
						|
    public IList<MetadataSettingField> KPlusOverrides { get; set; }
 | 
						|
}
 |