Add description to exports #197
This commit is contained in:
parent
1f8a5b256e
commit
0312786721
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
<Version>6.6.6.1</Version>
|
<Version>6.6.7.1</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@ -44,6 +44,9 @@ namespace ApplicationServices
|
|||||||
[Name("Length In Minutes")]
|
[Name("Length In Minutes")]
|
||||||
public int LengthInMinutes { get; set; }
|
public int LengthInMinutes { get; set; }
|
||||||
|
|
||||||
|
[Name("Description")]
|
||||||
|
public string Description { get; set; }
|
||||||
|
|
||||||
[Name("Publisher")]
|
[Name("Publisher")]
|
||||||
public string Publisher { get; set; }
|
public string Publisher { get; set; }
|
||||||
|
|
||||||
@ -111,6 +114,7 @@ namespace ApplicationServices
|
|||||||
AuthorNames = a.Book.AuthorNames,
|
AuthorNames = a.Book.AuthorNames,
|
||||||
NarratorNames = a.Book.NarratorNames,
|
NarratorNames = a.Book.NarratorNames,
|
||||||
LengthInMinutes = a.Book.LengthInMinutes,
|
LengthInMinutes = a.Book.LengthInMinutes,
|
||||||
|
Description = a.Book.Description,
|
||||||
Publisher = a.Book.Publisher,
|
Publisher = a.Book.Publisher,
|
||||||
HasPdf = a.Book.HasPdf,
|
HasPdf = a.Book.HasPdf,
|
||||||
SeriesNames = a.Book.SeriesNames,
|
SeriesNames = a.Book.SeriesNames,
|
||||||
@ -180,6 +184,7 @@ namespace ApplicationServices
|
|||||||
nameof (ExportDto.AuthorNames),
|
nameof (ExportDto.AuthorNames),
|
||||||
nameof (ExportDto.NarratorNames),
|
nameof (ExportDto.NarratorNames),
|
||||||
nameof (ExportDto.LengthInMinutes),
|
nameof (ExportDto.LengthInMinutes),
|
||||||
|
nameof (ExportDto.Description),
|
||||||
nameof (ExportDto.Publisher),
|
nameof (ExportDto.Publisher),
|
||||||
nameof (ExportDto.HasPdf),
|
nameof (ExportDto.HasPdf),
|
||||||
nameof (ExportDto.SeriesNames),
|
nameof (ExportDto.SeriesNames),
|
||||||
@ -233,6 +238,7 @@ namespace ApplicationServices
|
|||||||
row.CreateCell(col++).SetCellValue(dto.AuthorNames);
|
row.CreateCell(col++).SetCellValue(dto.AuthorNames);
|
||||||
row.CreateCell(col++).SetCellValue(dto.NarratorNames);
|
row.CreateCell(col++).SetCellValue(dto.NarratorNames);
|
||||||
row.CreateCell(col++).SetCellValue(dto.LengthInMinutes);
|
row.CreateCell(col++).SetCellValue(dto.LengthInMinutes);
|
||||||
|
row.CreateCell(col++).SetCellValue(dto.Description);
|
||||||
row.CreateCell(col++).SetCellValue(dto.Publisher);
|
row.CreateCell(col++).SetCellValue(dto.Publisher);
|
||||||
row.CreateCell(col++).SetCellValue(dto.HasPdf);
|
row.CreateCell(col++).SetCellValue(dto.HasPdf);
|
||||||
row.CreateCell(col++).SetCellValue(dto.SeriesNames);
|
row.CreateCell(col++).SetCellValue(dto.SeriesNames);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user