Removed excessive declarations.
This commit is contained in:
parent
5c8ad72a5e
commit
957bec1c7f
2 changed files with 2 additions and 6 deletions
|
|
@ -23,10 +23,6 @@ namespace LibationWinForms
|
|||
[Browsable(false)]
|
||||
public string AudibleProductId => Book.AudibleProductId;
|
||||
[Browsable(false)]
|
||||
public string Tags => Book.UserDefinedItem.Tags;
|
||||
[Browsable(false)]
|
||||
public IEnumerable<string> TagsEnumerated => Book.UserDefinedItem.TagsEnumerated;
|
||||
[Browsable(false)]
|
||||
public LibraryBook LibraryBook { get; }
|
||||
|
||||
#endregion
|
||||
|
|
@ -114,7 +110,7 @@ namespace LibationWinForms
|
|||
public string Misc { get; }
|
||||
public string Description { get; }
|
||||
|
||||
public string DisplayTags => string.Join("\r\n", TagsEnumerated);
|
||||
public string DisplayTags => string.Join("\r\n", Book.UserDefinedItem.TagsEnumerated);
|
||||
public (LiberatedState, PdfState) Liberate => (LibraryCommands.Liberated_Status(Book), LibraryCommands.Pdf_Status(Book));
|
||||
|
||||
#endregion
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue