Make it possible to feed in options to the Enumerate handler

This commit is contained in:
TheXamlGuy
2024-05-05 20:43:17 +01:00
parent 605a0284b5
commit ead288ab52
11 changed files with 124 additions and 28 deletions
+6
View File
@@ -0,0 +1,6 @@
namespace Bitvault;
public record VaultViewModelOptions
{
public string? Filter { get; set; }
}