break wallet navigation off into seperate view

This commit is contained in:
TheXamlGuy
2024-07-10 15:21:02 +01:00
parent 762c867eaa
commit bd51de3245
24 changed files with 298 additions and 236 deletions
@@ -0,0 +1,8 @@
namespace Wallet;
public record ItemNavigationCollectionConfiguration
{
public string? Filter { get; set; } = "All";
public string? Query { get; set; }
}