Files
Walleby/Wallet/WalletViewModelConfiguration.cs
T
2024-06-09 14:00:36 +01:00

8 lines
157 B
C#

namespace Wallet;
public record WalletViewModelConfiguration
{
public string? Filter { get; set; } = "All";
public string? Query { get; set; }
}