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