10 lines
188 B
C#
10 lines
188 B
C#
using Toolkit.Foundation;
|
|
|
|
namespace Bitvault;
|
|
|
|
public record VaultConfiguration : ComponentConfiguration
|
|
{
|
|
public string? Name { get; set; }
|
|
|
|
public string? Key { get; set; }
|
|
} |