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

9 lines
132 B
C#

namespace Wallet;
public interface IItemEntryConfiguration
{
string? Label { get; set; }
object? Value { get; set; }
}