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