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)