mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			320 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			320 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using CsvHelper.Configuration.Attributes;
 | 
						|
 | 
						|
namespace API.DTOs.Stats;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// Excel export for File Extension Report
 | 
						|
/// </summary>
 | 
						|
public sealed record FileExtensionExportDto
 | 
						|
{
 | 
						|
    [Name("Path")]
 | 
						|
    public string FilePath { get; set; }
 | 
						|
 | 
						|
    [Name("Extension")]
 | 
						|
    public string Extension { get; set; }
 | 
						|
}
 |