Files
Walleby/Wallet/ItemCollectionConfiguration.cs
T
2024-06-09 22:41:58 +01:00

8 lines
156 B
C#

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