16 lines
396 B
C#
16 lines
396 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Core.Blueprint.KeyVault.Configuration
|
|
{
|
|
public class VaultOptions
|
|
{
|
|
public string Address { get; set; } = string.Empty;
|
|
public string Token { get; set; } = string.Empty;
|
|
public string SecretMount { get; set; } = string.Empty;
|
|
}
|
|
}
|