8 lines
156 B
C#
8 lines
156 B
C#
namespace Wallet;
|
|
|
|
public record ItemCollectionConfiguration
|
|
{
|
|
public string? Filter { get; set; } = "All";
|
|
|
|
public string? Query { get; set; }
|
|
} |