Files
Walleby/Bitvault/IItemEntryConfiguration.cs
T
2024-06-08 20:42:29 +01:00

9 lines
134 B
C#

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