Event Widget Updates + Format Downloads + Scanner Work (#3024)
This commit is contained in:
parent
30a8a2555f
commit
a427d02ed1
34 changed files with 971 additions and 694 deletions
15
API/DTOs/Stats/FileExtensionExportDto.cs
Normal file
15
API/DTOs/Stats/FileExtensionExportDto.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
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; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue