10 lines
189 B
C#
10 lines
189 B
C#
using System.Text.Json.Serialization;
|
|
using Toolkit.Foundation;
|
|
|
|
namespace Bitvault;
|
|
|
|
public record VaultConfiguration : ComponentConfiguration
|
|
{
|
|
public string? Name { get; set; }
|
|
}
|