9 lines
132 B
C#
9 lines
132 B
C#
namespace Wallet;
|
|
|
|
public interface IItemEntryConfiguration
|
|
{
|
|
string? Label { get; set; }
|
|
|
|
object? Value { get; set; }
|
|
}
|