New feature: 'Remove' now removes forever. Removed books won't be re-added on next scan

This commit is contained in:
Robert McRackan 2022-12-14 16:19:55 -05:00
parent f2ea02ae0b
commit 7ad0ab566a
6 changed files with 467 additions and 16 deletions

View file

@ -11,6 +11,8 @@ namespace DataLayer
public DateTime DateAdded { get; private set; }
public string Account { get; private set; }
public bool IsDeleted { get; set; }
private LibraryBook() { }
public LibraryBook(Book book, DateTime dateAdded, string account)
{