New search field: Finished/IsFinished.

All work complete except db migration
This commit is contained in:
Robert McRackan 2024-09-11 07:45:37 -04:00
parent 92ee0b2e6d
commit 2fd8ea91e1
6 changed files with 31 additions and 5 deletions

View file

@ -195,7 +195,23 @@ namespace DataLayer
}
}
}
#endregion
#endregion
#region IsFinished
private bool _isFinished;
public bool IsFinished
{
get => _isFinished;
set
{
if (value != _isFinished)
{
_isFinished = value;
OnItemChanged(nameof(IsFinished));
}
}
}
#endregion
public override string ToString() => $"{Book} {Rating} {Tags}";
}