From 313e3846c3f8b18e247e8084724804f5c3a96adf Mon Sep 17 00:00:00 2001 From: MBucari Date: Fri, 2 May 2025 15:39:47 -0600 Subject: [PATCH] Remove AudioFormat from library book exporter (5f455182) --- Source/ApplicationServices/LibraryExporter.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Source/ApplicationServices/LibraryExporter.cs b/Source/ApplicationServices/LibraryExporter.cs index b299c1b2..f0a62193 100644 --- a/Source/ApplicationServices/LibraryExporter.cs +++ b/Source/ApplicationServices/LibraryExporter.cs @@ -104,9 +104,6 @@ namespace ApplicationServices [Name("Content Type")] public string ContentType { get; set; } - [Name("Audio Format")] - public string AudioFormat { get; set; } - [Name("Language")] public string Language { get; set; } @@ -227,7 +224,6 @@ namespace ApplicationServices nameof(ExportDto.BookStatus), nameof(ExportDto.PdfStatus), nameof(ExportDto.ContentType), - nameof(ExportDto.AudioFormat), nameof(ExportDto.Language), nameof(ExportDto.LastDownloaded), nameof(ExportDto.LastDownloadedVersion), @@ -298,7 +294,6 @@ namespace ApplicationServices row.CreateCell(col++).SetCellValue(dto.BookStatus); row.CreateCell(col++).SetCellValue(dto.PdfStatus); row.CreateCell(col++).SetCellValue(dto.ContentType); - row.CreateCell(col++).SetCellValue(dto.AudioFormat); row.CreateCell(col++).SetCellValue(dto.Language); if (dto.LastDownloaded.HasValue)